style: format component metadata in app components
Some checks failed
CI / Get Changed Files (pull_request) Successful in 6s
CI / Checkstyle Main (pull_request) Has been skipped
CI / eslint (pull_request) Failing after 20s
CI / test-build (pull_request) Failing after 24s
CI / prettier (pull_request) Successful in 27s

This commit is contained in:
Jan K9f 2025-03-13 11:19:58 +01:00
parent d285297ede
commit 1469918b4b
Signed by: jank
GPG key ID: 22BEAC760B3333D6
8 changed files with 34 additions and 34 deletions

View file

@ -10,6 +10,6 @@ import { FooterComponent } from './shared/components/footer/footer.component';
providers: [],
templateUrl: './app.component.html',
styleUrl: './app.component.css',
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class AppComponent {}

View file

@ -27,7 +27,7 @@ import gsap from 'gsap';
selector: 'app-deposit',
imports: [ReactiveFormsModule, NgIf],
templateUrl: './deposit.component.html',
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges {
@Input() isOpen = false;

View file

@ -11,7 +11,7 @@ import { ActivatedRoute } from '@angular/router';
selector: 'app-homepage',
imports: [NavbarComponent, CurrencyPipe, NgFor, DepositComponent, ConfirmationComponent],
templateUrl: './home.component.html',
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export default class HomeComponent implements OnInit {
isDepositModalOpen = false;

View file

@ -6,7 +6,7 @@ import { NgFor } from '@angular/common';
selector: 'app-landing-page',
imports: [NavbarComponent, NgFor],
templateUrl: './landing.component.html',
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class LandingComponent implements OnInit, OnDestroy {
currentSlide = 0;

View file

@ -8,7 +8,7 @@ import { Router } from '@angular/router';
imports: [],
templateUrl: './login-success.component.html',
styleUrl: './login-success.component.css',
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export default class LoginSuccessComponent implements OnInit {
private userService: UserService = inject(UserService);

View file

@ -14,7 +14,7 @@ import gsap from 'gsap';
@Component({
selector: 'app-confirmation',
imports: [],
templateUrl: './confirmation.component.html'
templateUrl: './confirmation.component.html',
})
export class ConfirmationComponent implements AfterViewInit, OnDestroy {
@Input() successful = true;

View file

@ -7,7 +7,7 @@ import { faPaypal, faGooglePay, faApplePay } from '@fortawesome/free-brands-svg-
selector: 'app-footer',
templateUrl: './footer.component.html',
imports: [FontAwesomeModule],
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FooterComponent {
currentYear: number = new Date().getFullYear();

View file

@ -8,7 +8,7 @@ import { CurrencyPipe } from '@angular/common';
selector: 'app-navbar',
templateUrl: './navbar.component.html',
imports: [RouterModule, CurrencyPipe],
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class NavbarComponent implements OnInit {
isMenuOpen = false;