From e58f7249a689af253dbbbfe8387083dff6da4b31 Mon Sep 17 00:00:00 2001 From: Surya Paolo Date: Wed, 25 Jan 2023 11:55:06 +0100 Subject: [PATCH] Sulla foto della notifica il click non funziona check App --- quasar.conf.js | 1 + src/App.ts | 8 +++++--- src/components/CCheckAppRunning/CCheckAppRunning.vue | 9 +++++++-- src/components/CSignIn/CSignIn.ts | 8 ++++++-- src/components/CSignIn/CSignIn.vue | 1 + src/layouts/toolbar/coinsPopover/coinsPopover.vue | 2 +- src/layouts/toolbar/notifPopover/notifPopover.vue | 2 +- src/statics/lang/it.js | 2 +- src/store/Modules/tools.ts | 2 ++ 9 files changed, 25 insertions(+), 10 deletions(-) diff --git a/quasar.conf.js b/quasar.conf.js index 939c6cdd..d67628ce 100755 --- a/quasar.conf.js +++ b/quasar.conf.js @@ -312,6 +312,7 @@ module.exports = configure((ctx) => ({ orientation: 'portrait', background_color: '#ffffff', theme_color: '#027be3', + start_url: '/', icons: [ { src: 'images/riso-android-icon-512x512.png', diff --git a/src/App.ts b/src/App.ts index a735ffc9..6acd3444 100755 --- a/src/App.ts +++ b/src/App.ts @@ -79,17 +79,19 @@ export default { function mounted() { + console.log('app mounted') darkcookie.value = tools.getCookie('darkmode', false, false, false) === '-1' scroll() - tools.initprompt() - - tools.checkApp() } async function created() { + tools.initprompt() + + tools.checkApp() + try { if (process.env.DEV) { console.info('SESSIONE IN SVILUPPO ! (DEV)') diff --git a/src/components/CCheckAppRunning/CCheckAppRunning.vue b/src/components/CCheckAppRunning/CCheckAppRunning.vue index 02f94f31..e477a586 100755 --- a/src/components/CCheckAppRunning/CCheckAppRunning.vue +++ b/src/components/CCheckAppRunning/CCheckAppRunning.vue @@ -1,4 +1,9 @@