Rename variables to non dom element names #71

Merged
jank merged 3 commits from fix/rename-to-not-standard-dom-elements into main 2025-03-12 18:52:31 +00:00
2 changed files with 5 additions and 2 deletions
Showing only changes of commit 8c9d7c498b - Show all commits

View file

@ -73,7 +73,10 @@
<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" (closeModalEmitter)="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>

View file

@ -23,7 +23,7 @@ export class ConfirmationComponent implements AfterViewInit, OnDestroy {
@ViewChild('modalBg') modalBg!: ElementRef; @ViewChild('modalBg') modalBg!: ElementRef;
@ViewChild('modalCard') modalCard!: ElementRef; @ViewChild('modalCard') modalCard!: ElementRef;
constructor(private modalAnimationService: ModalAnimationService) { } constructor(private modalAnimationService: ModalAnimationService) {}
ngAfterViewInit() { ngAfterViewInit() {
if (this.successful) { if (this.successful) {