Skip to content

Commit

Permalink
Fix duplicate ID on settings page
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Sep 27, 2022
1 parent 5b1b9cd commit 6c97fd7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/views/UserSettings.vue
Original file line number Diff line number Diff line change
@@ -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()">

0 comments on commit 6c97fd7

Please sign in to comment.