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>2022-09-09 09:17:06 +0300
committerdartcafe <github@dartcafe.de>2022-09-09 09:17:59 +0300
commitd46a903a0b03c27a004de85848f31779153295d7 (patch)
treea4f95642cb92a4c0e1dc5afc52f51a01f035c3ed /src/js/components
parent7eda2b5ee54450f0be296cf9491f0645ae9e73aa (diff)
fix NcAppSettingsSection
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/components')
-rw-r--r--src/js/components/Settings/UserSettingsDlg.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/js/components/Settings/UserSettingsDlg.vue b/src/js/components/Settings/UserSettingsDlg.vue
index 8925d124..7e99eb9c 100644
--- a/src/js/components/Settings/UserSettingsDlg.vue
+++ b/src/js/components/Settings/UserSettingsDlg.vue
@@ -22,19 +22,19 @@
<template>
<NcAppSettingsDialog :open.sync="show" :show-navigation="true">
- <NcAppSettingsSection :title="t('polls', 'Calendar check')">
+ <NcAppSettingsSection id="calendar" :title="t('polls', 'Calendar check')">
<CalendarSettings />
</NcAppSettingsSection>
- <NcAppSettingsSection :title="t('polls', 'User settings')">
+ <NcAppSettingsSection id="div-settings" :title="t('polls', 'User settings')">
<FeatureSettings />
</NcAppSettingsSection>
- <NcAppSettingsSection :title="t('polls', 'Performance settings')">
+ <NcAppSettingsSection id="performance" :title="t('polls', 'Performance settings')">
<PerformanceSettings />
</NcAppSettingsSection>
- <NcAppSettingsSection :title="t('polls', 'Styles')">
+ <NcAppSettingsSection id="styles" :title="t('polls', 'Styles')">
<StyleSettings />
</NcAppSettingsSection>
</NcAppSettingsDialog>