Minor UI changes - tooltips, spelling 27/427/3
authorLott, Christopher (cl778h) <cl778h@att.com>
Thu, 27 Jun 2019 18:06:53 +0000 (14:06 -0400)
committerChris Lott <cl778h@att.com>
Thu, 27 Jun 2019 19:09:08 +0000 (19:09 +0000)
Add tooltips to action icons on control and admin screens
  to be consistent with the catalog screen.
Change Flag No Transaction to Flag No Xn in dialog
  to be consistent with the table header.

Change-Id: I14b2949708dfb6d33bf8cf9b878494ddf9d90648
Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
webapp-frontend/src/app/admin/user.component.html
webapp-frontend/src/app/anr-xapp/anr-edit-ncr-dialog.component.html
webapp-frontend/src/app/app-control/app-control.component.html

index e4b3047..d32a3f2 100644 (file)
         <mat-header-cell *matHeaderCellDef> Action </mat-header-cell>
         <mat-cell *matCellDef="let element">
           <div class="user-button-row">
-            <button mat-icon-button
-                    (click)="editUser(element)">
-              <mat-icon>edit</mat-icon>
+            <button mat-icon-button (click)="editUser(element)">
+              <mat-icon matTooltip="Edit properties">edit</mat-icon>
             </button>
-            <button mat-icon-button color="warn"
-                    (click)="deleteUser(element)">
-              <mat-icon>delete</mat-icon>
+            <button mat-icon-button color="warn" (click)="deleteUser(element)">
+              <mat-icon matTooltip="Delete user">delete</mat-icon>
             </button>
           </div>
         </mat-cell>
index 7f22819..b5cedc7 100644 (file)
@@ -40,7 +40,7 @@
         <mat-checkbox formControlName="flagNoHo">Flag No Handover</mat-checkbox>
     </div>
     <div name="flagNoXn">
-        <mat-checkbox formControlName="flagNoXn">Flag No Transaction</mat-checkbox>
+        <mat-checkbox formControlName="flagNoXn">Flag No Xn</mat-checkbox>
     </div>
     <div name="flagNoRemove">
       <mat-checkbox formControlName="flagNoRemove">Flag No Remove</mat-checkbox>
index 3321caa..f8a9d4c 100644 (file)
       <mat-header-cell *matHeaderCellDef> Action </mat-header-cell>
       <!-- click on button should not expand/collapse the row -->
       <mat-cell *matCellDef="let element" (click)="$event.stopPropagation()">
-        <button mat-icon-button (click)="controlApp(element)">
-          <mat-icon>settings</mat-icon>
+      <button mat-icon-button (click)="controlApp(element)">
+          <mat-icon matTooltip="Adjust settings">settings</mat-icon>
         </button>
-        <button mat-icon-button color="warn" (click)="undeployApp(element)">
-          <mat-icon>delete</mat-icon>
+        <button mat-icon-button (click)="undeployApp(element)">
+          <mat-icon matTooltip="Undeploy app">cloud_download</mat-icon>
         </button>
       </mat-cell>
     </ng-container>