delete useless icon-declaration for sidebar

This commit is contained in:
Tobias Gabelunke 2020-07-09 10:35:49 +02:00
parent bc9d0b39fd
commit f02f4e7f66

View File

@ -3,38 +3,32 @@ import { Component } from '@angular/core';
declare interface RouteInfo { declare interface RouteInfo {
path: string; path: string;
title: string; title: string;
icon: string;
class: string; class: string;
} }
export const ROUTES: RouteInfo[] = [ export const ROUTES: RouteInfo[] = [
{ {
path: "/dashboard", path: "/dashboard",
title: "Dashboard", title: "Dashboard",
icon: "icon-chart-pie-36",
class: "" class: ""
}, },
{ {
path: "/backlog", path: "/backlog",
title: "Backlog", title: "Backlog",
icon: "icon-atom",
class: "" class: ""
}, },
{ {
path: "/userstories", path: "/userstories",
title: "Userstories", title: "Userstories",
icon: "icon-pin",
class: "" class: ""
}, },
{ {
path: "/tasks", path: "/tasks",
title: "Tasks", title: "Tasks",
icon: "icon-bell-55",
class: "" class: ""
}, },
{ {
path: "/sprints", path: "/sprints",
title: "Sprints", title: "Sprints",
icon: "icon-single-02",
class: "" class: ""
} }
]; ];