Skip to content

Commit

Permalink
Change id and associated css selectors of Multiple Scenario edit options
Browse files Browse the repository at this point in the history
  • Loading branch information
sMeilbeck committed Nov 16, 2023
1 parent 6f904c3 commit f64de81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/app/example-table/example-table.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ span, .checkboxWrapper{
vertical-align: middle;
}

#inputExample{
#inputExample_rename #inputExample_delete{
margin: 0 !important;
padding: 0 !important;
}
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/app/example-table/example-table.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
<div *ngIf="!first">
{{column}}
<span *ngIf="editMode">
<button id="inputExample" class="scenarioTitle" (click)="renameExample(columnIndex)">
<button id="inputExample_rename" class="scenarioTitle" (click)="renameExample(columnIndex)">
<em class="material-icons">edit</em>
</button>
<button id="inputExample" class="scenarioTitle" (click)="deleteExample($event, columnIndex)">
<button id="inputExample_delete" class="scenarioTitle" (click)="deleteExample($event, columnIndex)">
<em class="material-icons">delete</em>
</button>
</span>
Expand Down

0 comments on commit f64de81

Please sign in to comment.