blob: e0afa3dab73c2c7d2dd9f7bb52e889e40ef82f6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<div style="position: relative; display: flex; justify-content: flex-end; height: 100%;">
<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.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: scroll;">
<app-action-list></app-action-list>
</div>
</app-slide-panel>
</div>
</div>
|