Skip to content

Commit

Permalink
Navigation page Studies / Series tabs : Reject entity shows rejection…
Browse files Browse the repository at this point in the history
… note codes instead of the code meaning #4306
  • Loading branch information
shral committed Dec 18, 2023
1 parent a1a2c63 commit 7f82605
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -35,7 +35,7 @@
<input type="checkbox" class="dcm_input_checkbox" *ngIf="option.value && option.value != '' && multiSelectMode" [(ngModel)]="option.selected">
<div class="dcm_input_value" [ngClass]="{'with_checkbox':multiSelectMode}" *ngIf="option.htmlLabel" [innerHTML]="option.htmlLabel"></div>
<div class="dcm_input_value" [ngClass]="{'with_checkbox':multiSelectMode}" *ngIf="!option.htmlLabel">
{{option.text || option.value || option.label}}
{{option.label || option.text || option.value}}
</div>
</li>
<li class="option" *ngIf="!options || options.length === 0" (click)="select('')">
Expand All @@ -51,7 +51,7 @@
<input type="checkbox" class="dcm_input_checkbox" *ngIf="option.value && option.value != '' && multiSelectMode" [(ngModel)]="option.selected">
<div class="dcm_input_value" [ngClass]="{'with_checkbox':multiSelectMode}" *ngIf="option.htmlLabel" [innerHTML]="option.htmlLabel"></div>
<div class="dcm_input_value" [ngClass]="{'with_checkbox':multiSelectMode}" *ngIf="!option.htmlLabel">
{{option.text || option.value || option.label}}
{{option.label || option.text || option.value }}
</div>
</li>
<li class="option" *ngIf="!group || group.length === 0" (click)="select('')">
Expand Down

0 comments on commit 7f82605

Please sign in to comment.