Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-08-30 21:50:49 +0300
committerJoas Schilling <coding@schilljs.com>2022-09-27 12:16:00 +0300
commit6c97fd7651de65b518bdf42dc0ec3f325bbf7c3e (patch)
tree355252a9e70040bc5d31f0ed919b1440d2617157
parent5b1b9cd17eda532ddf81ad05a87b2689935c7436 (diff)
Fix duplicate ID on settings page
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--src/views/UserSettings.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/views/UserSettings.vue b/src/views/UserSettings.vue
index f2045d8..2881218 100644
--- a/src/views/UserSettings.vue
+++ b/src/views/UserSettings.vue
@@ -25,11 +25,12 @@
<strong v-if="!config.is_email_set">{{ t('notifications', 'You need to set up your email address before you can receive notification emails.') }}</strong>
</div>
<p>
- <label for="notify_setting_batchtime" class="notification-frequency__label">
+ <label for="notification_reminder_batchtime" class="notification-frequency__label">
{{ t('notifications', 'Send email reminders about unhandled notifications after:') }}
</label>
<select
- id="notify_setting_batchtime"
+ id="notification_reminder_batchtime"
+ name="notification_reminder_batchtime"
v-model="config.setting_batchtime"
class="notification-frequency__select"
@change="updateSettings()">