From 0ce5eace2cfa8e9768565bae340919a91601a926 Mon Sep 17 00:00:00 2001 From: "konstantina.galouni" Date: Fri, 1 Jul 2022 11:37:50 +0300 Subject: [PATCH] [Connect | new-theme]: app.component.ts: Added "Dashboard" in menu items to match menu with admin dashboard. --- src/app/app.component.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index ac09574..b90a074 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -265,6 +265,11 @@ export class AppComponent implements OnInit, OnDestroy { badge: true }; this.menuItems = []; + this.menuItems.push({ + rootItem: new MenuItem("dashboard", "Dashboard", + "", "/", false, [], null, {} + , null, null, null, null), items: [] + }); this.menuItems.push({ rootItem: new MenuItem("deposit", "Deposit", "", "/participate/deposit/learn-how", false, [], ["/participate/deposit/learn-how"], {}), items: []