From b77788b94713a93c21d6f07b825ba75dbc391847 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 6 May 2020 09:40:49 +0900 Subject: [PATCH] refactor(client): Reorder property --- src/client/pages/my-settings/reaction.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 });