Skip to content

Commit

Permalink
Added checkbox_all differentiation
Browse files Browse the repository at this point in the history
  • Loading branch information
sMeilbeck committed Nov 22, 2023
1 parent 51f6095 commit b69a650
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/app/base-editor/base-editor.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
padding: 0 !important;
}

:host ::ng-deep #checkbox_all_example {
:host ::ng-deep #example_checkbox_all {
margin-left: 10px;
}

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/base-editor/base-editor.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ng-template #actionBar>
<div class="scenarioBarContainer" [ngStyle]="{'margin': (name==='example') ? '0px' : ''}">
<div class="actionBarButtonGroup">
<input type="checkbox" class="checkbox" id="checkbox_all" (change)="checkAllSteps()" [checked]="this.allChecked"
<input type="checkbox" class="checkbox" id="{{name+'_checkbox_all'}}" (change)="checkAllSteps()" [checked]="this.allChecked"
uk-tooltip title="Check All Steps" />
<div [class.disabled]="!this.activeActionBar">
<button *ngIf="name !== 'example' && name !== 'block-editor'" id="{{name+'_addBlock_step_'}}"
Expand Down

0 comments on commit b69a650

Please sign in to comment.