removed old code for portal
[eliot.git] / blueprints / common / eliot-ui / frontend-src / src / app / menu-item / menu-item.component.html
diff --git a/blueprints/common/eliot-ui/frontend-src/src/app/menu-item/menu-item.component.html b/blueprints/common/eliot-ui/frontend-src/src/app/menu-item/menu-item.component.html
deleted file mode 100644 (file)
index e4ed020..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<mat-menu #childMenu="matMenu" [overlapTrigger]="false">
-    <span *ngFor="let child of items">
-        <span *ngIf="child.children && child.children.length > 0">
-            <button mat-menu-item  [matMenuTriggerFor]="menu.childMenu">
-                {{child.displayName}}
-            </button>
-
-            <app-menu-item #menu [items]="child.children"></app-menu-item>
-        </span>
-
-
-        <span *ngIf="!child.children || child.children.length === 0">
-            <button mat-menu-item  [routerLink]="child.route">
-                <span *ngIf="child.iconName">
-
-                    <mat-icon>{{child.iconName}}</mat-icon>
-                </span>
-                {{child.displayName}}
-            </button>
-
-        </span>
-    </span>
-</mat-menu>
\ No newline at end of file