mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-08-06 05:24:26 -04:00
Fix require-v-for-key
, remove unused declarations and double spaces
This commit is contained in:
parent
78f5d2cd8b
commit
d94894b7e0
10 changed files with 26 additions and 31 deletions
|
@ -61,7 +61,7 @@
|
|||
<h2>Notifications</h2>
|
||||
<p v-if="$root.notificationList.length === 0">Not available, please setup.</p>
|
||||
|
||||
<div class="form-check form-switch mb-3" v-for="notification in $root.notificationList">
|
||||
<div class="form-check form-switch mb-3" v-for="(notification, index) in $root.notificationList" :key="index">
|
||||
<input class="form-check-input" type="checkbox" :id=" 'notification' + notification.id" v-model="monitor.notificationIDList[notification.id]">
|
||||
|
||||
<label class="form-check-label" :for=" 'notification' + notification.id">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue