Skip to content

Commit

Permalink
Change stub strategy naming
Browse files Browse the repository at this point in the history
  • Loading branch information
celmoussaoui committed Jul 17, 2023
1 parent f441ed4 commit 9353c22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/report/edit-display/edit-display.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@

<div class="form-group col-10" *ngIf="report.stub">
<select class="form-control" (change)="selectStubStrategy($event)">
<option [selected]="report.stub === -1">Stub Strategy: Follow report strategy</option>
<option [selected]="report.stub === 1">Stub Strategy: Yes</option>
<option [selected]="report.stub === 0">Stub Strategy: No</option>
<option [selected]="report.stub === -1">Use report level stub strategy</option>
<option [selected]="report.stub === 1">Always stub this checkpoint</option>
<option [selected]="report.stub === 0">Never stub this checkpoint</option>
</select>
</div>
</div>
Expand Down

0 comments on commit 9353c22

Please sign in to comment.