fix: unread message label i18n formatting
This commit is contained in:
@@ -246,8 +246,10 @@ export default {
|
||||
return this.$t('CONVERSATION.UNREAD_COUNT_OVERFLOW');
|
||||
}
|
||||
|
||||
const formatter = new Intl.NumberFormat(navigator.language);
|
||||
|
||||
return this.$t('CONVERSATION.UNREAD_COUNT', {
|
||||
count: this.unreadMessageCount,
|
||||
count: formatter.format(this.unreadMessageCount),
|
||||
});
|
||||
},
|
||||
isInstagramDM() {
|
||||
|
||||
Reference in New Issue
Block a user