re base code
[sdc.git] / catalog-ui / src / app / ng2 / components / logic / service-path / service-path.component.html
1 <div class='service-path'>
2         <button class='zoom-icons create-path-button' data-tests-id="pathsMenuBtn" (click)="showServicePathMenu = !showServicePathMenu">...</button>
3         <div class="service-path-menu" *ngIf="showServicePathMenu">
4                 <div >
5                         <ul>
6                                 <li *ngIf='!isViewOnly'><div class="hand" (click)="onCreateServicePath()" data-tests-id="createPathMenuItem">
7                                         Create Service Flow
8                                 </div></li>
9                                 <li><div class="hand" (click)="onListServicePath()" data-tests-id="pathsListMenuItem">
10                                         Service Flows List
11                                 </div></li>
12                         </ul>
13                 </div>
14         </div>
15 </div>