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>2021-04-20 00:04:55 +0300
committerdartcafe <github@dartcafe.de>2021-04-20 00:04:55 +0300
commitbba2035c96b4c54e4770ff0415429513bfd1ee15 (patch)
treee123451b50ccae7fc827dd9d8a9781ea7a50a9aa /src/js/components/Options/OptionsDate.vue
parent763da62caad7bdbba3ae47bdda9a6c33cd4f1769 (diff)
use @nextcloud/eslint-config, lint:fix and tidy
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/components/Options/OptionsDate.vue')
-rw-r--r--src/js/components/Options/OptionsDate.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/js/components/Options/OptionsDate.vue b/src/js/components/Options/OptionsDate.vue
index 07d5dc42..b3f8ede7 100644
--- a/src/js/components/Options/OptionsDate.vue
+++ b/src/js/components/Options/OptionsDate.vue
@@ -47,7 +47,8 @@
<ActionButton v-if="!pollIsClosed" icon="icon-polls-clone" @click="cloneOptionModal(option)">
{{ t('polls', 'Clone option') }}
</ActionButton>
- <ActionButton v-if="pollIsClosed" :icon="option.confirmed ? 'icon-polls-confirmed' : 'icon-polls-unconfirmed'"
+ <ActionButton v-if="pollIsClosed"
+ :icon="option.confirmed ? 'icon-polls-confirmed' : 'icon-polls-unconfirmed'"
@click="confirmOption(option)">
{{ option.confirmed ? t('polls', 'Unconfirm option') : t('polls', 'Confirm option') }}
</ActionButton>