aboutsummaryrefslogtreecommitdiff
path: root/src/components/poll
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2021-05-31 14:02:36 +0300
committerHenry Jameson <me@hjkos.com>2021-05-31 14:02:36 +0300
commitc03965646027bc8ce2d4c083ea3fd0423233fa18 (patch)
tree5157becb136a77346e18af047cfd57d672eb4e27 /src/components/poll
parent1afda1ac6d037e477e500870fe4e05c3c1f773cb (diff)
fix warnings
Diffstat (limited to 'src/components/poll')
-rw-r--r--src/components/poll/poll_form.vue10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/components/poll/poll_form.vue b/src/components/poll/poll_form.vue
index ecbfdf41..3620075a 100644
--- a/src/components/poll/poll_form.vue
+++ b/src/components/poll/poll_form.vue
@@ -47,13 +47,17 @@
:title="$t('polls.type')"
>
<Select
+ v-model="pollType"
class="poll-type-select"
unstyled="true"
- v-model="pollType"
@change="updatePollToParent"
>
- <option value="single">{{ $t('polls.single_choice') }}</option>
- <option value="multiple">{{ $t('polls.multiple_choices') }}</option>
+ <option value="single">
+ {{ $t('polls.single_choice') }}
+ </option>
+ <option value="multiple">
+ {{ $t('polls.multiple_choices') }}
+ </option>
</Select>
</div>
<div