add transactionsEnabled : enable the circuit to the transactions

This commit is contained in:
Paolo Arena
2022-09-22 11:06:04 +02:00
parent 7358216e6f
commit bc2080c42c
19 changed files with 53 additions and 22 deletions

View File

@@ -25,6 +25,12 @@
</q-item-section>
<q-item-section>{{ $t('notifs.setallread') }}</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="notifStore.deleteAll(username, shared_consts.QualiNotifs.CIRCUITS)">
<q-item-section side>
<q-icon name="fas fa-trash-alt"/>
</q-item-section>
<q-item-section>{{ $t('notifs.deleteall') }}</q-item-section>
</q-item>
</q-list>
</q-menu>
</q-btn>
@@ -148,7 +154,7 @@
</q-item-section>
<q-item-section side>
<q-item-label>
<q-btn v-if="!notif.read" dense rounded icon="fas fa-ellipsis-h">
<q-btn dense rounded icon="fas fa-ellipsis-h">
<q-menu>
<q-list style="min-width: 150px">
<q-item clickable v-close-popup @click="notifStore.setRead(notif._id)">
@@ -157,6 +163,12 @@
</q-item-section>
<q-item-section>{{ $t('notifs.read') }}</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="notifStore.deleteRec(username, notif._id)">
<q-item-section side>
<q-icon name="fas fa-trash-alt"/>
</q-item-section>
<q-item-section>{{ $t('notifs.delete_notif') }}</q-item-section>
</q-item>
</q-list>
</q-menu>
</q-btn>