Fix bug
This commit is contained in:
parent
a103ae6755
commit
c81ff10d5b
1 changed files with 1 additions and 1 deletions
|
@ -416,7 +416,7 @@ export default Vue.extend({
|
|||
|
||||
reactions: {
|
||||
get() { return this.$store.state.settings.reactions.join('\n'); },
|
||||
set(value: string) { this.$store.dispatch('settings/set', { key: 'reactions', value: value.split('\n') }); }
|
||||
set(value: string) { this.$store.dispatch('settings/set', { key: 'reactions', value: value.trim().split('\n') }); }
|
||||
},
|
||||
|
||||
useShadow: {
|
||||
|
|
Loading…
Reference in a new issue