fix: amount not to be fixed value

This commit is contained in:
2025-08-24 23:00:37 -03:00
parent 34b9586b65
commit 94fc0df93e
2 changed files with 9 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
<mw-title-bar-base-money [amount]="15000"> <mw-title-bar-base-money [amount]="amount()">
<div class="title-bar-date"> <div class="title-bar-date">
<div> <div>
<mw-typography <mw-typography

View File

@@ -11,5 +11,12 @@ import { TypographyComponent } from '../../atoms/typography/typography.component
styleUrl: './title-bar-date.component.css' styleUrl: './title-bar-date.component.css'
}) })
export class TitleBarDateComponent { export class TitleBarDateComponent {
date = input(new Date()) /**
* @description Title (group) amount
*/
amount = input(0);
/**
* @description Title (group) date
*/
date = input(new Date());
} }