Skip to content

Commit

Permalink
UI: Bug Reports after upgrade #4306 - UI Monitoring Tabs - Batch ID G…
Browse files Browse the repository at this point in the history
…rouped text invisible
  • Loading branch information
vrindanayak committed Feb 21, 2024
1 parent 56a00b6 commit 259e9ab
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
Expand Up @@ -47,7 +47,11 @@ <h2 i18n="@@diff_monitoring">Diff Monitoring</h2>
<mat-select [(ngModel)]="allAction" i18n-placeholder="@@placeholder.all_actions" placeholder="All actions" (selectionChange)="allActionChanged($event)" floatPlaceholder="never">
<mat-option value="{{actions.value}}" *ngFor="let actions of allActionsOptions">{{actions.label}}</mat-option>
</mat-select>
<div class="checkbox_button pull-left" [ngClass]="{'active':batchGrouped}"><mat-checkbox [(ngModel)]="batchGrouped" (ngModelChange)="tasks = []" i18n="@@batch_id_grouped">Batch ID grouped</mat-checkbox></div>
<!-- <div class="checkbox_button pull-left" [ngClass]="{'active':batchGrouped}"><mat-checkbox [(ngModel)]="batchGrouped" (ngModelChange)="tasks = []" i18n="@@batch_id_grouped">Batch ID grouped</mat-checkbox></div> -->
<label for="checkbox" class="checkbox_button pull-right" [ngClass]="{'active':batchGrouped}">
<input id="checkbox" [(ngModel)]="batchGrouped" (ngModelChange)="tasks = []" type="checkbox">
<span i18n="@@batch_id_grouped">Batch ID grouped</span>
</label>
</div>
</div>
</div>
Expand Down
Expand Up @@ -54,7 +54,11 @@ <h2 i18n="@@export.export">Export</h2>
<mat-select class="pull-left" [(ngModel)]="allAction" i18n-placeholder="@@placeholder.all_actions" placeholder="All actions" (selectionChange)="allActionChanged($event)" floatPlaceholder="never">
<mat-option value="{{actions.value}}" *ngFor="let actions of allActionsOptions">{{actions.label}}</mat-option>
</mat-select>
<div class="checkbox_button pull-right" [ngClass]="{'active':batchGrouped}"><mat-checkbox [(ngModel)]="batchGrouped" (ngModelChange)="bachChange($event)" i18n="@@batch_id_grouped">Batch ID grouped</mat-checkbox></div>
<!-- <div class="checkbox_button pull-right" [ngClass]="{'active':batchGrouped}"><mat-checkbox [(ngModel)]="batchGrouped" (ngModelChange)="bachChange($event)" i18n="@@batch_id_grouped">Batch ID grouped</mat-checkbox></div>-->
<label for="checkbox" class="checkbox_button pull-right" [ngClass]="{'active':batchGrouped}">
<input id="checkbox" [(ngModel)]="batchGrouped" (ngModelChange)="batchChange($event)" type="checkbox">
<span i18n="@@batch_id_grouped">Batch ID grouped</span>
</label>
</div>
</div>
</div>
Expand Down
Expand Up @@ -1168,7 +1168,7 @@ export class ExportComponent implements OnInit, OnDestroy {
}
}
moreTasks = false;
bachChange(e){
batchChange(e){
this.matches = [];
}
getCount(){
Expand Down
Expand Up @@ -47,7 +47,11 @@ <h2 i18n="@@retrieve">Retrieve</h2>
<mat-select class="pull-left" [(ngModel)]="allAction" i18n-placeholder="@@placeholder.all_actions" placeholder="All actions" (selectionChange)="allActionChanged($event)" floatPlaceholder="never">
<mat-option value="{{actions.value}}" *ngFor="let actions of allActionsOptions">{{actions.label}}</mat-option>
</mat-select>
<div class="checkbox_button" [ngClass]="{'active':batchGrouped}"><mat-checkbox [(ngModel)]="batchGrouped" (ngModelChange)="externalRetrieveEntries = []" i18n="@@batch_id_grouped">Batch ID grouped</mat-checkbox></div>
<!-- <div class="checkbox_button" [ngClass]="{'active':batchGrouped}"><mat-checkbox [(ngModel)]="batchGrouped" (ngModelChange)="externalRetrieveEntries = []" i18n="@@batch_id_grouped">Batch ID grouped</mat-checkbox></div> -->
<label for="checkbox" class="checkbox_button pull-right" [ngClass]="{'active':batchGrouped}">
<input id="checkbox" [(ngModel)]="batchGrouped" (ngModelChange)="externalRetrieveEntries = []" type="checkbox">
<span i18n="@@batch_id_grouped">Batch ID grouped</span>
</label>
</div>
</div>
</div>
Expand Down
Expand Up @@ -49,7 +49,11 @@ <h2 class="pointer" (click)="openedBlock = 'monitor'" i18n="@@storage_verificati
</div>
<div class="filter_block">
<div class="line">
<div class="checkbox_button pull-left" [ngClass]="{'active':batchGrouped}"><mat-checkbox [(ngModel)]="batchGrouped" (ngModelChange)="storageVerifications = [];filterObject.offset = 0" i18n="@@batch_id_grouped">Batch ID grouped</mat-checkbox></div>
<!-- <div class="checkbox_button pull-left" [ngClass]="{'active':batchGrouped}"><mat-checkbox [(ngModel)]="batchGrouped" (ngModelChange)="storageVerifications = [];filterObject.offset = 0" i18n="@@batch_id_grouped">Batch ID grouped</mat-checkbox></div> -->
<label for="checkbox" class="checkbox_button pull-left" [ngClass]="{'active':batchGrouped}">
<input id="checkbox" [(ngModel)]="batchGrouped" (ngModelChange)="storageVerifications = [];filterObject.offset = 0" type="checkbox">
<span i18n="@@batch_id_grouped">Batch ID grouped</span>
</label>
</div>
</div>
</div>
Expand Down

0 comments on commit 259e9ab

Please sign in to comment.