diff --git a/src/client/pages/my-settings/reaction.vue b/src/client/pages/my-settings/reaction.vue index bb9eab1e73..86e85d484c 100644 --- a/src/client/pages/my-settings/reaction.vue +++ b/src/client/pages/my-settings/reaction.vue @@ -41,18 +41,18 @@ export default Vue.extend({ } }, - watch: { - reactions() { - this.changed = true; - } - }, - computed: { splited(): any { return this.reactions.match(emojiRegexWithCustom); }, }, + watch: { + reactions() { + this.changed = true; + } + }, + methods: { save() { this.$store.dispatch('settings/set', { key: 'reactions', value: this.splited });