{{ group.name }}
- {{ group.ticker }}
|
+ {{ group.ticker }} |
+ |
@@ -180,13 +181,19 @@
diff --git a/frontend/src/app/dashboard/dashboard.component.scss b/frontend/src/app/dashboard/dashboard.component.scss
index 23c9b226e..e518beaa7 100644
--- a/frontend/src/app/dashboard/dashboard.component.scss
+++ b/frontend/src/app/dashboard/dashboard.component.scss
@@ -285,8 +285,8 @@
}
.assetIcon {
- width: 28px;
- height: 28px;
+ width: 40px;
+ height: 40px;
}
.asset-title {
@@ -298,11 +298,16 @@
}
.asset-icon {
- width: 54px;
- height: 52px;
+ width: 65px;
+ height: 65px;
}
.asset-table {
width: calc(100% - 20px);
margin-left: 1.25rem;
}
+
+.circulating-amount {
+ text-align: right;
+ width: 100%;
+}
diff --git a/frontend/src/app/dashboard/dashboard.component.ts b/frontend/src/app/dashboard/dashboard.component.ts
index 36ad73003..b8a32210c 100644
--- a/frontend/src/app/dashboard/dashboard.component.ts
+++ b/frontend/src/app/dashboard/dashboard.component.ts
@@ -127,15 +127,15 @@ export class DashboardComponent implements OnInit {
this.featuredAssets$ = this.apiService.listFeaturedAssets$()
.pipe(
- take(5),
map((featured) => {
+ featured = featured.slice(0, 4);
for (const feature of featured) {
if (feature.assets) {
feature.asset = feature.assets[0];
}
}
return featured;
- })
+ }),
);
this.blocks$ = this.stateService.blocks$