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; + } }