From 95889fc93755fa1e037c506c9c8f0fec1edd0db9 Mon Sep 17 00:00:00 2001 From: Lea Date: Wed, 5 Mar 2025 10:34:08 +0100 Subject: [PATCH] fix: closing of deposit confirmation modal --- frontend/src/app/feature/home/home.component.html | 2 +- frontend/src/app/feature/home/home.component.ts | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/feature/home/home.component.html b/frontend/src/app/feature/home/home.component.html index 4677ca9..ace0c10 100644 --- a/frontend/src/app/feature/home/home.component.html +++ b/frontend/src/app/feature/home/home.component.html @@ -71,7 +71,7 @@ - +

Letzte Transaktionen

diff --git a/frontend/src/app/feature/home/home.component.ts b/frontend/src/app/feature/home/home.component.ts index 699b3cf..c9761da 100644 --- a/frontend/src/app/feature/home/home.component.ts +++ b/frontend/src/app/feature/home/home.component.ts @@ -15,6 +15,7 @@ import {ConfirmationComponent} from "../../shared/components/confirmation/confir }) export default class HomeComponent { isDepositModalOpen = false; + isDepositSuccessful = true; featuredGames: Game[] = [ { @@ -78,4 +79,11 @@ export default class HomeComponent { closeDepositModal() { this.isDepositModalOpen = false; } + + openDepositSuccessfulModal() { + this.isDepositSuccessful = true; + } + closeDepositSuccessfulModal() { + this.isDepositSuccessful = false; + } }