add the important emoji back
continuous-integration/drone/push Build is passing Details

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2022-11-29 17:09:22 +01:00
parent 206e2b482a
commit 65025c4914
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ const ReactButton = {
},
computed: {
commonEmojis () {
const hardcodedSet = new Set(['👍', '😠', '👀', '😂', '🔥'])
const hardcodedSet = new Set(['👍', '😠', '👀', '😂', '🔥', '🤥', '🤔', '🤪', '🤸‍♂️', '💊', '✍️', '✏️', '📈', '📉', '❔', '❌', '🦧', '🦉', '🍼', '🖍️', '🔧', '🧛🏿'])
return this.$store.getters.standardEmojiList.filter(emoji => hardcodedSet.has(emoji.replacement))
},
languages () {

View File

@ -27,7 +27,7 @@ const messages = {
setLanguage: async (i18n, language) => {
if (hasLanguageFile(language)) {
const messages = await loadLanguageFile(language)
i18n.global.setLocaleMessage(language, messages.default)
i18n.setLocaleMessage(language, messages.default)
}
i18n.locale = language
}