Skip to content

Commit

Permalink
Fix bug with checked item (#1138)
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelMoeri authored Nov 8, 2024
1 parent f9846fb commit 4b6382c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ <h3>Action Plan</h3>
<div *ngIf="action.isChecked">
<div class="action-list-checked-item break-word ms-4">
<img src="../../../assets/icons/checkmark.svg" alt="checkbox" class="action-checkbox me-1" />
<p [ngStyle]="{ 'text-decoration': 'line-through' }">{{ action.action }}</p>
<span class="" [ngStyle]="{ 'text-decoration': 'line-through' }">{{ action.action }}</span>
</div>
</div>
<div *ngIf="!action.isChecked">
Expand Down

0 comments on commit 4b6382c

Please sign in to comment.