diff options
| author | Henry Jameson <me@hjkos.com> | 2020-10-21 00:31:16 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-10-21 00:31:16 +0300 |
| commit | f561e755530063b2e8e0db210264b1d244543bd0 (patch) | |
| tree | 986f3ca8b95b0cfa48725e970204d1e402ff12ad /src/components/poll/poll_form.vue | |
| parent | 1ec41302f729ac9100c3ec0cede5e4f79dd626a3 (diff) | |
lint
Diffstat (limited to 'src/components/poll/poll_form.vue')
| -rw-r--r-- | src/components/poll/poll_form.vue | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/components/poll/poll_form.vue b/src/components/poll/poll_form.vue index f3e7a716..e598cf3b 100644 --- a/src/components/poll/poll_form.vue +++ b/src/components/poll/poll_form.vue @@ -36,7 +36,10 @@ class="add-option faint" @click="addOption" > - <FAIcon icon="plus" size="sm"/> + <FAIcon + icon="plus" + size="sm" + /> {{ $t("polls.add_option") }} </a> @@ -57,7 +60,10 @@ <option value="single">{{ $t('polls.single_choice') }}</option> <option value="multiple">{{ $t('polls.multiple_choices') }}</option> </select> - <FAIcon class="select-down-icon" icon="chevron-down"/> + <FAIcon + class="select-down-icon" + icon="chevron-down" + /> </label> </div> <div @@ -85,7 +91,10 @@ {{ $t(`time.${unit}_short`, ['']) }} </option> </select> - <FAIcon class="select-down-icon" icon="chevron-down"/> + <FAIcon + class="select-down-icon" + icon="chevron-down" + /> </label> </div> </div> |
