diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index a19b587..2e8672e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,9 +10,9 @@ jobs: image: "cimg/openjdk:23.0-node" steps: - name: "Checkout" - uses: actions/checkout@v4 + uses: actions/checkout@v3 - name: "Cache Gradle dependencies" - uses: https://github.com/actions/cache@v4 + uses: https://github.com/actions/cache@v3 with: path: | ~/.gradle/caches @@ -39,7 +39,7 @@ jobs: uses: actions/checkout@v4 - name: Install bun uses: oven-sh/setup-bun@v2 - - uses: actions/cache@v4 + - uses: actions/cache@v3 working-directory: ./frontend with: path: | @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@v4 - name: Install bun uses: oven-sh/setup-bun@v2 - - uses: actions/cache@v4 + - uses: actions/cache@v3 working-directory: ./frontend with: path: | @@ -91,7 +91,7 @@ jobs: uses: actions/checkout@v4 - name: Install bun uses: oven-sh/setup-bun@v2 - - uses: actions/cache@v4 + - uses: actions/cache@v3 working-directory: ./frontend with: path: | @@ -99,7 +99,7 @@ jobs: key: ${{ runner.os }}-bun- restore-keys: | ${{ runner.os }}-bun- - - uses: actions/cache@v4 + - uses: actions/cache@v3 working-directory: ./frontend with: path: | diff --git a/frontend/src/app/feature/deposit/deposit.component.ts b/frontend/src/app/feature/deposit/deposit.component.ts index bb38fc9..f0f900a 100644 --- a/frontend/src/app/feature/deposit/deposit.component.ts +++ b/frontend/src/app/feature/deposit/deposit.component.ts @@ -32,7 +32,7 @@ import gsap from 'gsap'; }) export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges { @Input() isOpen = false; - @Output() closeModalEmitter = new EventEmitter(); + @Output() close = new EventEmitter(); @ViewChild('modalBg') modalBg!: ElementRef; @ViewChild('modalCard') modalCard!: ElementRef; protected form!: FormGroup; @@ -110,7 +110,7 @@ export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnCha this.modalAnimationService.closeModal( this.modalCard.nativeElement, this.modalBg.nativeElement, - () => this.closeModalEmitter.emit() + () => this.close.emit() ); } } diff --git a/frontend/src/app/feature/home/home.component.html b/frontend/src/app/feature/home/home.component.html index 0d4708a..fb2424a 100644 --- a/frontend/src/app/feature/home/home.component.html +++ b/frontend/src/app/feature/home/home.component.html @@ -73,10 +73,7 @@

Konto

- + @@ -88,7 +85,7 @@
diff --git a/frontend/src/app/shared/components/confirmation/confirmation.component.ts b/frontend/src/app/shared/components/confirmation/confirmation.component.ts index 9c26f22..d407985 100644 --- a/frontend/src/app/shared/components/confirmation/confirmation.component.ts +++ b/frontend/src/app/shared/components/confirmation/confirmation.component.ts @@ -19,7 +19,7 @@ import gsap from 'gsap'; }) export class ConfirmationComponent implements AfterViewInit, OnDestroy { @Input() successful = true; - @Output() closeConfirmation = new EventEmitter(); + @Output() close = new EventEmitter(); @ViewChild('modalBg') modalBg!: ElementRef; @ViewChild('modalCard') modalCard!: ElementRef; @@ -43,7 +43,7 @@ export class ConfirmationComponent implements AfterViewInit, OnDestroy { this.modalAnimationService.closeModal( this.modalCard.nativeElement, this.modalBg.nativeElement, - () => this.closeConfirmation.emit() + () => this.close.emit() ); } }