mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
Merged PR 1951: fix(remission-list): ensure list reload after search dialog closes
fix(remission-list): ensure list reload after search dialog closes Move reloadListAndReturnData() call outside the conditional block to guarantee data refresh regardless of dialog result. Previously, the list would only reload when items were selected, causing stale data when the dialog was cancelled or closed without selection. Ref: #5342
This commit is contained in:
committed by
Lorenz Hilpert
parent
304f8a64e5
commit
62e586cfda
@@ -451,9 +451,8 @@ export class RemissionListComponent {
|
||||
} else if (this.isDepartment()) {
|
||||
return await this.navigateToDefaultRemissionList();
|
||||
}
|
||||
|
||||
this.reloadListAndReturnData();
|
||||
}
|
||||
this.reloadListAndReturnData();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user