fix capitalization (and localization of tooltips for scope icon)

This commit is contained in:
Henry Jameson 2022-03-22 20:42:29 +02:00
parent 7afa6c9f40
commit d524e98348
3 changed files with 11 additions and 7 deletions

View file

@ -389,6 +389,9 @@ const Status = {
},
threadShowing () {
return this.controlledThreadDisplayStatus === 'showing'
},
visibilityLocalized () {
return this.$i18n.t('general.scope_in_timeline.' + this.status.visibility)
}
},
methods: {
@ -478,11 +481,6 @@ const Status = {
'isSuspendable': function (val) {
this.suspendable = val
}
},
filters: {
capitalize: function (str) {
return str.charAt(0).toUpperCase() + str.slice(1)
}
}
}