Skip to content

Commit

Permalink
Merge pull request #13050 from nucleogenesis/fix--removed-title-missing
Browse files Browse the repository at this point in the history
Fix missing facility_name in facility removal notification
  • Loading branch information
nucleogenesis authored Feb 5, 2025
2 parents 4b993e4 + a51c9da commit d531917
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@
) {
this.fetchFacilites();
if (task.type === TaskTypes.DELETEFACILITY) {
this.showFacilityRemovedSnackbar(task.facility_name);
this.showFacilityRemovedSnackbar(task.extra_metadata.facility_name);
}
this.taskIdsToWatch = this.taskIdsToWatch.filter(x => x !== task.id);
} else if (this.isSyncTask(task) && task.status === TaskStatuses.FAILED) {
Expand Down

0 comments on commit d531917

Please sign in to comment.