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
path: root/src
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2021-05-16 23:42:21 +0300
committerdartcafe <github@dartcafe.de>2021-05-16 23:42:21 +0300
commitd8591273f93a1f7db1dd8d3aabbbe388e7e5b195 (patch)
treeb2304a5d2368bc23fe48bb81a00c079ff34053ba /src
parent9cadb19244a69fadf4506f0da76bf2c4aabd7393 (diff)
linter happyness
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src')
-rw-r--r--src/js/components/Settings/ExpertimantalSettings.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/js/components/Settings/ExpertimantalSettings.vue b/src/js/components/Settings/ExpertimantalSettings.vue
index 6fe351eb..5b6c1e04 100644
--- a/src/js/components/Settings/ExpertimantalSettings.vue
+++ b/src/js/components/Settings/ExpertimantalSettings.vue
@@ -33,9 +33,10 @@
<div class="user_settings">
<CheckBoxDiv v-model="useImage" :label="t('polls', 'Use background image')" />
<div class="settings_details">
- {{ t('polls', 'Add a background image to the main area.') }}
+ {{ t('polls', 'Add a background image to the main area') }}
<div>
- <input v-if="useImage" v-model="imageUrl" type="text" :placeholder="t('polls', 'Enter the URL of your favorite background image.')">
+ <input v-if="useImage" v-model="imageUrl" type="text"
+ :placeholder="t('polls', 'Enter the URL of your favorite background image.')">
</div>
</div>
</div>