Circuits OK

Accounts Ok
Movements OK
This commit is contained in:
Paolo Arena
2022-09-14 11:31:48 +02:00
parent 44c75768c6
commit 25a60472ab
34 changed files with 299 additions and 119 deletions

View File

@@ -40,7 +40,7 @@ export default defineComponent({
const notifStore = useNotifStore()
const { t } = useI18n()
const $q = useQuasar()
const q = useQuasar()
const loading = ref(false)
@@ -109,9 +109,9 @@ export default defineComponent({
console.log('usernotifs.value', usernotifs.value, to)
const ret = await userStore.setUserNotifs(usernotifs.value)
/*if (ret) {
tools.showPositiveNotif($q, t('db.recupdated'))
tools.showPositiveNotif(q, t('db.recupdated'))
} else {
tools.showNegativeNotif($q, t('db.recfailed'))
tools.showNegativeNotif(q, t('db.recfailed'))
}*/
}
})
@@ -222,7 +222,7 @@ export default defineComponent({
t,
username,
userStore,
$q,
q,
}
},
})