From: Bill Erickson <berickxx@gmail.com>
Date: Tue, 19 Mar 2019 15:47:52 +0000 (-0400)
Subject: LP1821382 Angular grid inline load progress indicator.
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=dfbc0644b41da7b3433a44f109b3b40cdb2d8ea9;p=evergreen%2Fequinox.git

LP1821382 Angular grid inline load progress indicator.

Display an indeterminate progress indicator while the grid is waiting
for data to arrive.

Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Dan Wells <dbw2@calvin.edu>
---

diff --git a/Open-ILS/src/eg2/src/app/share/grid/grid.component.html b/Open-ILS/src/eg2/src/app/share/grid/grid.component.html
index dd462465b0..4a6ae6ec9b 100644
--- a/Open-ILS/src/eg2/src/app/share/grid/grid.component.html
+++ b/Open-ILS/src/eg2/src/app/share/grid/grid.component.html
@@ -16,15 +16,15 @@
   </eg-grid-print>
 
   <ng-container *ngIf="dataSource.data.length == 0">
-    <div class="row">>
+    <div class="row">
       <ng-container *ngIf="dataSource.requestingData">
         <div class="col-lg-6 offset-lg-3 text-center mt-3">
-         <eg-progress-inline></eg-progress-inline>
+          <eg-progress-inline></eg-progress-inline>
         </div>
       </ng-container>
       <ng-container *ngIf="!dataSource.requestingData">
-        <div class="col-lg-12 text-center alert alert-light font-italic" i18n>
-          Nothing to Display
+        <div class="col-lg-12 text-center alert alert-light font-italic">
+          <span i18n>Nothing to Display</span>
         </div>
       </ng-container>
     </div>