refactor(deposit): rename close event emitter for clarity
This commit is contained in:
parent
a7d98e1150
commit
abc4277e84
2 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@ import gsap from 'gsap';
|
||||||
})
|
})
|
||||||
export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges {
|
export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges {
|
||||||
@Input() isOpen = false;
|
@Input() isOpen = false;
|
||||||
@Output() close = new EventEmitter<void>();
|
@Output() closeModalEmitter = new EventEmitter<void>();
|
||||||
@ViewChild('modalBg') modalBg!: ElementRef;
|
@ViewChild('modalBg') modalBg!: ElementRef;
|
||||||
@ViewChild('modalCard') modalCard!: ElementRef;
|
@ViewChild('modalCard') modalCard!: ElementRef;
|
||||||
protected form!: FormGroup;
|
protected form!: FormGroup;
|
||||||
|
@ -110,7 +110,7 @@ export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnCha
|
||||||
this.modalAnimationService.closeModal(
|
this.modalAnimationService.closeModal(
|
||||||
this.modalCard.nativeElement,
|
this.modalCard.nativeElement,
|
||||||
this.modalBg.nativeElement,
|
this.modalBg.nativeElement,
|
||||||
() => this.close.emit()
|
() => this.closeModalEmitter.emit()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,7 +73,7 @@
|
||||||
<h3 class="section-heading text-xl mb-4">Konto</h3>
|
<h3 class="section-heading text-xl mb-4">Konto</h3>
|
||||||
<div class="space-y-4">
|
<div class="space-y-4">
|
||||||
<button class="button-primary w-full py-2" (click)="openDepositModal()">Einzahlen</button>
|
<button class="button-primary w-full py-2" (click)="openDepositModal()">Einzahlen</button>
|
||||||
<app-deposit [isOpen]="isDepositModalOpen" (close)="closeDepositModal()"></app-deposit>
|
<app-deposit [isOpen]="isDepositModalOpen" (closeModalEmitter)="closeDepositModal()"></app-deposit>
|
||||||
<button class="bg-deep-blue-light hover:bg-deep-blue-contrast w-full py-2 rounded">
|
<button class="bg-deep-blue-light hover:bg-deep-blue-contrast w-full py-2 rounded">
|
||||||
Transaktionen
|
Transaktionen
|
||||||
</button>
|
</button>
|
||||||
|
|
Loading…
Add table
Reference in a new issue