From e16aea812ea598a135469a209ebb024864070b96 Mon Sep 17 00:00:00 2001 From: Artur Date: Tue, 8 Oct 2024 16:00:17 +0200 Subject: [PATCH] col beter size --- src/app/components/dashboard/dashboard.component.html | 3 +-- src/app/components/dashboard/dashboard.component.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/components/dashboard/dashboard.component.html b/src/app/components/dashboard/dashboard.component.html index 5e709d5..57ba60e 100644 --- a/src/app/components/dashboard/dashboard.component.html +++ b/src/app/components/dashboard/dashboard.component.html @@ -18,10 +18,9 @@
@for (symbol of symbols; track $index ){ -
+
- }
\ No newline at end of file diff --git a/src/app/components/dashboard/dashboard.component.ts b/src/app/components/dashboard/dashboard.component.ts index 6593d13..d5b082e 100644 --- a/src/app/components/dashboard/dashboard.component.ts +++ b/src/app/components/dashboard/dashboard.component.ts @@ -7,7 +7,7 @@ import { CommodityComponent } from '../commodity/commodity.component'; @Component({ selector: 'dashboard', standalone: true, - imports: [CommodityComponent, NgFor], + imports: [CommodityComponent], templateUrl: './dashboard.component.html', styleUrls: ['./dashboard.component.css'] })