Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2020-01-29 20:57:39 +0300
committerdartcafe <github@dartcafe.de>2020-01-29 20:57:39 +0300
commit2163b51ef27863ea5cdc1fd2d4da18d4cdbc248f (patch)
treef44ead6fe339c5182c78feeb3bd92a8451f393f5
parent9d021dc7d850ccb4812df795bc69fa99805e3f45 (diff)
Avoid double feedback when opt in to allow maybe #800
-rw-r--r--src/js/components/SideBar/SideBarTabConfiguration.vue3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/js/components/SideBar/SideBarTabConfiguration.vue b/src/js/components/SideBar/SideBarTabConfiguration.vue
index 8cd7fd5f..62315ee0 100644
--- a/src/js/components/SideBar/SideBarTabConfiguration.vue
+++ b/src/js/components/SideBar/SideBarTabConfiguration.vue
@@ -203,9 +203,6 @@ export default {
},
set(value) {
this.writeValue({ allowMaybe: value })
- if (value) {
- this.writeValue({ options: ['yes', 'no', 'maybe'] })
- }
}
},