diff --git a/frontend/src/app/feature/game/blackjack/blackjack.component.html b/frontend/src/app/feature/game/blackjack/blackjack.component.html index dd62189..db4d698 100644 --- a/frontend/src/app/feature/game/blackjack/blackjack.component.html +++ b/frontend/src/app/feature/game/blackjack/blackjack.component.html @@ -6,9 +6,9 @@ @@ -16,7 +16,7 @@ diff --git a/frontend/src/app/feature/game/blackjack/components/game-controls/game-controls.component.ts b/frontend/src/app/feature/game/blackjack/components/game-controls/game-controls.component.ts index 92aac24..c78111f 100644 --- a/frontend/src/app/feature/game/blackjack/components/game-controls/game-controls.component.ts +++ b/frontend/src/app/feature/game/blackjack/components/game-controls/game-controls.component.ts @@ -8,19 +8,19 @@ import { CommonModule } from '@angular/common'; template: `
- + `, changeDetection: ChangeDetectionStrategy.OnPush, }) export class GameInfoComponent { - @Input() balance: number = 0; - @Input() currentBet: number = 0; - @Output() onNewGameClick = new EventEmitter(); + @Input() balance = 0; + @Input() currentBet = 0; + @Output() newGame = new EventEmitter(); }