feat: rename event emitter for confirmation modal closure
Some checks failed
CI / prettier (pull_request) Failing after 20s
CI / Checkstyle Main (pull_request) Successful in 31s
CI / eslint (pull_request) Successful in 37s
CI / test-build (pull_request) Successful in 42s

This commit is contained in:
Jan K9f 2025-03-12 19:20:51 +01:00
parent 7bbabc46f3
commit a7d98e1150
Signed by: jank
GPG key ID: 22BEAC760B3333D6
2 changed files with 4 additions and 4 deletions

View file

@ -85,7 +85,7 @@
<app-confirmation
[successful]="isDepositSuccessful"
(close)="closeDepositConfirmationModal()"
(closeConfirmation)="closeDepositConfirmationModal()"
></app-confirmation>
<div class="card p-4">

View file

@ -19,11 +19,11 @@ import gsap from 'gsap';
})
export class ConfirmationComponent implements AfterViewInit, OnDestroy {
@Input() successful = true;
@Output() close = new EventEmitter<void>();
@Output() closeConfirmation = new EventEmitter<void>();
@ViewChild('modalBg') modalBg!: ElementRef;
@ViewChild('modalCard') modalCard!: ElementRef;
constructor(private modalAnimationService: ModalAnimationService) {}
constructor(private modalAnimationService: ModalAnimationService) { }
ngAfterViewInit() {
if (this.successful) {
@ -43,7 +43,7 @@ export class ConfirmationComponent implements AfterViewInit, OnDestroy {
this.modalAnimationService.closeModal(
this.modalCard.nativeElement,
this.modalBg.nativeElement,
() => this.close.emit()
() => this.closeConfirmation.emit()
);
}
}