mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 05:57:32 -07:00
Fix bug
This commit is contained in:
parent
7fbab77ef9
commit
23645ecc9f
1 changed files with 1 additions and 1 deletions
|
@ -416,7 +416,7 @@ export default Vue.extend({
|
||||||
|
|
||||||
reactions: {
|
reactions: {
|
||||||
get() { return this.$store.state.settings.reactions.join('\n'); },
|
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: {
|
useShadow: {
|
||||||
|
|
Loading…
Reference in a new issue