remove some debug msg

This commit is contained in:
LouisLam
2021-07-10 12:04:40 +08:00
parent 44bcd78f9a
commit 86492f6dad
3 changed files with 5 additions and 7 deletions

View File

@@ -54,9 +54,9 @@
<h2>Notifications</h2>
<p v-if="$root.notificationList.length === 0">Not available, please setup.</p>
<ul>
<li v-for="notification in $root.notificationList">
{{ notification.name }}
<ul class="list-group mb-3" style="border-radius: 1rem;">
<li class="list-group-item" v-for="notification in $root.notificationList">
{{ notification.name }}<br />
<a href="#" @click="$refs.notificationDialog.show(notification.id)">Edit</a>
</li>
</ul>