Skip to content

Commit

Permalink
fix where gray out happens on disabled action component
Browse files Browse the repository at this point in the history
  • Loading branch information
jwetzell committed Aug 11, 2023
1 parent 0feecd7 commit d721719
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webui/src/app/components/action/action.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<ng-container *ngIf="action">
<div class="flex items-center">
<div class="m-2" [style.opacity]="this.action.enabled ? '1.0' : '0.5'">
<div class="flex items-center" [style.opacity]="this.action.enabled ? '1.0' : '0.5'">
<div class="m-2">
<div class="flex flex-col bg-gray-800 border-2 border-gray-200 border-solid">
<div class="flex w-full items-around">
<div>
Expand Down

0 comments on commit d721719

Please sign in to comment.