From 08ed6630159ebcc2059ee0ea994ccefedd64d89e Mon Sep 17 00:00:00 2001 From: Angelina Filippova Date: Thu, 5 Mar 2020 00:25:55 +0300 Subject: [PATCH] Fix wrapping updated settings in EditableKeywordInput --- .../components/inputComponents/EditableKeywordInput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/settings/components/inputComponents/EditableKeywordInput.vue b/src/views/settings/components/inputComponents/EditableKeywordInput.vue index f86f600d..a6ecde4d 100644 --- a/src/views/settings/components/inputComponents/EditableKeywordInput.vue +++ b/src/views/settings/components/inputComponents/EditableKeywordInput.vue @@ -104,7 +104,7 @@ export default { this.updateSetting(updatedValue, this.settingGroup.group, this.settingGroup.key, this.setting.key, this.setting.type) }, updateSetting(value, group, key, input, type) { - const updatedSettings = this.wrapUpdatedSettings(value, group, key, input, type) + const updatedSettings = this.wrapUpdatedSettings(value, input, type) this.$store.dispatch('UpdateSettings', { group, key, input, value: updatedSettings, type }) this.$store.dispatch('UpdateState', { group, key, input, value }) },