Signed-off-by: dartcafe <github@dartcafe.de>
This commit is contained in:
dartcafe 2021-02-27 15:40:52 +01:00
Родитель eaf29cd182
Коммит b5b5f5f39f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CCE73CEF3035D3C8
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -38,7 +38,7 @@
<ConfigBox :title="t('polls', 'Poll configurations')" icon-class="icon-category-customization">
<CheckBoxDiv v-model="pollAllowComment" :label="t('polls', 'Allow Comments')" />
<CheckBoxDiv v-model="pollAllowMaybe" :label="t('polls', 'Allow \'maybe\' vote')" />
<CheckBoxDiv v-model="pollAllowMaybe" :label="allowMybeLabel" />
<div v-if="(useVoteLimit || useOptionLimit) && pollAllowMaybe" class="indented warning">
{{ t('polls', 'If vote limits are used, \'maybe\' shouldn\'t be allowed.') }}
@ -115,6 +115,7 @@ export default {
data() {
return {
titleEmpty: false,
allowMybeLabel: t('polls', 'Allow "maybe" vote'),
accessOptions: [
{ value: 'hidden', label: t('polls', 'Only invited users') },
{ value: 'public', label: t('polls', 'All users') },