diff --git a/src/components/Status/index.vue b/src/components/Status/index.vue
index 25c62d5e..5f430c28 100644
--- a/src/components/Status/index.vue
+++ b/src/components/Status/index.vue
@@ -6,16 +6,14 @@
{{ $t('reports.sensitive') }}
@@ -204,6 +202,9 @@ export default {
})
})
},
+ isValid(account) {
+ return account.nickname && account.id
+ },
optionPercent(poll, pollOption) {
const allVotes = poll.options.reduce((acc, option) => (acc + option.votes_count), 0)
if (allVotes === 0) {
@@ -231,7 +232,8 @@ export default {
}
.deactivated {
color: gray;
- font-size: 15px;
+ line-height: 32px;
+ vertical-align: middle;
}
.image {
width: 20%;
diff --git a/src/lang/en.js b/src/lang/en.js
index 288bdf53..7eee1950 100644
--- a/src/lang/en.js
+++ b/src/lang/en.js
@@ -239,7 +239,8 @@ export default {
confirmAccount: 'Confirm account',
confirmAccounts: 'Confirm accounts',
resendConfirmation: 'Resend confirmation email',
- invalidUser: 'This account is invalid and can\'t be modified'
+ invalidUser: 'This account is invalid and can\'t be modified',
+ invalidNickname: 'invalid nickname'
},
statuses: {
statuses: 'Statuses',