Skip to content

Commit 58f9297

Browse files
vishalshrm539Sharma
andauthored
Fixed unexpected rendering of ToDo (#313)
Co-authored-by: Sharma <[email protected]>
1 parent 4f8b757 commit 58f9297

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/angular-sdk-components/src/lib/_components/template/confirmation/confirmation.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h2 id="confirm-label" class="confirm-label">{{ label }}</h2>
1414
<button mat-raised-button color="primary" (click)="onConfirmViewClose()">Done</button>
1515
</div>
1616
</div>
17-
<div *ngIf="toDoList?.length > 0">
17+
<div *ngIf="!showConfirmView && toDoList?.length > 0">
1818
<component-mapper
1919
name="Todo"
2020
[props]="{ pConn$, datasource$: { source: toDoList }, headerText$: 'Tasks', type$: CONSTS.TODO, isConfirm: true }"

0 commit comments

Comments
 (0)