diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-05-06 14:43:25 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-05-06 14:43:25 +0900 |
| commit | 97cdfa662e558a42ffd012d0c501f63a867e6ecd (patch) | |
| tree | f0a44712d8ad645f3e53c59e26ad57aabc1198cd /src/client | |
| parent | feat(client): Make possible to customize sidebar (diff) | |
| download | misskey-97cdfa662e558a42ffd012d0c501f63a867e6ecd.tar.gz misskey-97cdfa662e558a42ffd012d0c501f63a867e6ecd.tar.bz2 misskey-97cdfa662e558a42ffd012d0c501f63a867e6ecd.zip | |
fix(client): Fix default reaction setting
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/pages/my-settings/reaction.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/pages/my-settings/reaction.vue b/src/client/pages/my-settings/reaction.vue index 86e85d484c..68c481707c 100644 --- a/src/client/pages/my-settings/reaction.vue +++ b/src/client/pages/my-settings/reaction.vue @@ -71,7 +71,7 @@ export default Vue.extend({ }, setDefault() { - this.reactions = defaultSettings.reactions; + this.reactions = defaultSettings.reactions.join(''); }, async chooseEmoji(ev) { |