Skip to content

Commit

Permalink
Merge branch 'master' into 394551-NodeCustomization
Browse files Browse the repository at this point in the history
  • Loading branch information
VijayalakshmirSF4471 authored Nov 6, 2024
2 parents 208c496 + c7973d5 commit 20b3724
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -320,4 +320,12 @@ export class WorkflowDiagramComponent {
removeButton(index: number): void {
this.buttons.splice(index, 1);
}

onBeforeOpenDropDownButton() {
// Reset ListView to its initial state before opening
if (this.listView) {
this.listView.dataSource = this.listdata; // Reset data
this.listView.refresh();
}
}
}

0 comments on commit 20b3724

Please sign in to comment.