style: format constructor style in components
This commit is contained in:
parent
f5a16efa67
commit
35d53bce30
3 changed files with 3 additions and 3 deletions
|
@ -58,7 +58,7 @@ export class PlayingCardComponent implements AfterViewInit, OnChanges {
|
||||||
@Input({ required: true }) hidden!: boolean;
|
@Input({ required: true }) hidden!: boolean;
|
||||||
@Input() isNew = false;
|
@Input() isNew = false;
|
||||||
|
|
||||||
constructor(private elementRef: ElementRef) { }
|
constructor(private elementRef: ElementRef) {}
|
||||||
|
|
||||||
get isRedSuit(): boolean {
|
get isRedSuit(): boolean {
|
||||||
return this.suit === 'HEARTS' || this.suit === 'DIAMONDS';
|
return this.suit === 'HEARTS' || this.suit === 'DIAMONDS';
|
||||||
|
|
|
@ -21,7 +21,7 @@ export default class HomeComponent implements OnInit {
|
||||||
constructor(
|
constructor(
|
||||||
public route: ActivatedRoute,
|
public route: ActivatedRoute,
|
||||||
public router: Router
|
public router: Router
|
||||||
) { }
|
) {}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this.isDepositSuccessful = this.route.snapshot.queryParams['success'] == 'true';
|
this.isDepositSuccessful = this.route.snapshot.queryParams['success'] == 'true';
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue