From e6cfb7a32d4638481d9283129df5ed2ce8f9306f Mon Sep 17 00:00:00 2001 From: Kostya Date: Wed, 20 Dec 2023 17:50:37 +0300 Subject: [PATCH] fixed bug with infinity notification --- luckydiamond/public/index.html | 18 ------------------ luckydiamond/src/pages/ProfilePage.vue | 9 ++++++--- 2 files changed, 6 insertions(+), 21 deletions(-) diff --git a/luckydiamond/public/index.html b/luckydiamond/public/index.html index e0d7f12..8db69ba 100644 --- a/luckydiamond/public/index.html +++ b/luckydiamond/public/index.html @@ -31,23 +31,5 @@ - \ No newline at end of file diff --git a/luckydiamond/src/pages/ProfilePage.vue b/luckydiamond/src/pages/ProfilePage.vue index 045fae6..54d43d0 100644 --- a/luckydiamond/src/pages/ProfilePage.vue +++ b/luckydiamond/src/pages/ProfilePage.vue @@ -49,7 +49,7 @@ - + @@ -112,9 +112,12 @@ export default { this.openModal = true this.payments = false }, - NotificationMethod() { - this.notification = !this.notification + NotificationEventListener() { + this.notification = true this.openModal = false + }, + NotificationMethod() { + this.notification = false } // formatNumber(number) { // return number < 10 ? `0${number}` : number;