From f02f4e7f668a69889a33c4bcf2adc45e5d70f631 Mon Sep 17 00:00:00 2001 From: Tobias Gabelunke Date: Thu, 9 Jul 2020 10:35:49 +0200 Subject: [PATCH] delete useless icon-declaration for sidebar --- src/app/app.component.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index a42259e..56f0d03 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -3,38 +3,32 @@ import { Component } from '@angular/core'; declare interface RouteInfo { path: string; title: string; - icon: string; class: string; } export const ROUTES: RouteInfo[] = [ { path: "/dashboard", title: "Dashboard", - icon: "icon-chart-pie-36", class: "" }, { path: "/backlog", title: "Backlog", - icon: "icon-atom", class: "" }, { path: "/userstories", title: "Userstories", - icon: "icon-pin", class: "" }, { path: "/tasks", title: "Tasks", - icon: "icon-bell-55", class: "" }, { path: "/sprints", title: "Sprints", - icon: "icon-single-02", class: "" } ];