LP2000482 Angular 15 and Bootstrap 5 upgrade
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / staff / cat / vandelay / recent-imports.component.html
index c13c323..3e5c710 100644 (file)
@@ -1,9 +1,7 @@
 <div class="row mb-2">
   <div class="col-lg-6">
     <div class="input-group">
-      <div class="input-group-prepend">
-        <span class="input-group-text" i18n>Show Sessions Since: </span>
-      </div>
+      <span class="input-group-text" i18n>Show Sessions Since: </span>
       <eg-date-select 
         [initialIso]="sinceDate"
         (onChangeAsIso)="dateFilterChange($event)">
@@ -29,7 +27,7 @@
           <div class="panel-title">
             <span i18n>
               {{tracker.create_time() | date:'short'}} : 
-              <span class="font-weight-bold">{{tracker.name()}}</span>
+              <span class="fw-bold">{{tracker.name()}}</span>
             </span>
           </div>
         </div>
             <div class="col-lg-6">
               <!-- .id (not .id()) check to see if it's fleshed yet -->
               <span i18n *ngIf="tracker.queue().id">
-                <a class="font-weight-bold"
+                <a class="fw-bold"
                   routerLink="/staff/cat/vandelay/queue/{{tracker.record_type()}}/{{tracker.queue().id()}}">
                   Queue {{tracker.queue().name()}}
                 </a>
               </span>
-              <span class="pl-2" *ngIf="tracker.action_type() === 'enqueue'" i18n>Enqueuing... </span>
-              <span class="pl-2" *ngIf="tracker.action_type() === 'import'" i18n>Importing... </span>
+              <span class="ps-2" *ngIf="tracker.action_type() === 'enqueue'" i18n>Enqueuing... </span>
+              <span class="ps-2" *ngIf="tracker.action_type() === 'import'" i18n>Importing... </span>
               <span *ngIf="tracker.state() === 'active'" i18n>Active</span>
               <span *ngIf="tracker.state() === 'complete'" i18n>Complete</span>
               <span *ngIf="tracker.state() === 'error'" i18n>Error</span>
-              <span class='pl-3' *ngIf="tracker.state() === 'complete'">
+              <span class='ps-3' *ngIf="tracker.state() === 'complete'">
                 <span class="material-icons text-success">thumb_up</span>
               </span>
             </div>