summaryrefslogtreecommitdiffstats
path: root/public/src/app/rule-frame/rule-frame.component.html
diff options
context:
space:
mode:
authorStone, Avi (as206k) <as206k@att.com>2018-06-03 13:12:12 +0300
committerAvi Stone <as206k@att.com>2018-06-03 11:56:49 +0000
commit548c5a220333c7cd666b861e737bff0b45461f18 (patch)
tree13c60b67291bd8bada498ad73c02a9e35afb5c9e /public/src/app/rule-frame/rule-frame.component.html
parent193095b01daf094c78f7fafacdf1c1cc31f290fe (diff)
Update FE project
Update FE to latest version so that fe can run on docker Change-Id: I9c5dee756b567dbe64fac6d3d6fd89362813bdcc Issue-ID: SDC-1359 Signed-off-by: Stone, Avi (as206k) <as206k@att.com>
Diffstat (limited to 'public/src/app/rule-frame/rule-frame.component.html')
-rw-r--r--public/src/app/rule-frame/rule-frame.component.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/public/src/app/rule-frame/rule-frame.component.html b/public/src/app/rule-frame/rule-frame.component.html
index 10f3032..e0afa3d 100644
--- a/public/src/app/rule-frame/rule-frame.component.html
+++ b/public/src/app/rule-frame/rule-frame.component.html
@@ -1,16 +1,16 @@
<div style="position: relative; display: flex; justify-content: flex-end; height: 100%;">
- <div *ngIf="!tabName.includes('map')" style="margin: 1em;">
+ <div *ngIf="!tabName.toLowerCase().includes('map')" style="margin: 1em;">
<app-bar-icons [tabName]="tabName"></app-bar-icons>
</div>
<!-- rule engine -->
- <div style="width: 100%;" *ngIf="tabName.includes('map')">
+ <div style="width: 100%;" *ngIf="tabName.toLowerCase().includes('map')">
<app-slide-panel [activePane]="store.isLeftVisible ? 'left' : 'right'">
<div leftPane style="height: 100%; overflow: auto;">
<app-rule-list></app-rule-list>
</div>
- <div rightPane style="height: 100%; overflow: auto;">
+ <div rightPane style="height: 100%; overflow: scroll;">
<app-action-list></app-action-list>
</div>
</app-slide-panel>