From 55694ff2b96581e03c63c8b8e068e2db79bcf780 Mon Sep 17 00:00:00 2001 From: appel_c Date: Tue, 21 Apr 2026 09:59:52 +0200 Subject: [PATCH] fix(heatmap): fix access to status from metadata --- bec_widgets/widgets/plots/heatmap/heatmap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bec_widgets/widgets/plots/heatmap/heatmap.py b/bec_widgets/widgets/plots/heatmap/heatmap.py index 7dd6ff4d..dcaeb91e 100644 --- a/bec_widgets/widgets/plots/heatmap/heatmap.py +++ b/bec_widgets/widgets/plots/heatmap/heatmap.py @@ -611,7 +611,7 @@ class Heatmap(ImageBase): scan_msg = self.scan_item.status_message elif hasattr(self.scan_item, "metadata"): metadata = self.scan_item.metadata["bec"] - status = metadata["exit_status"] + status = metadata["status"] scan_id = metadata["scan_id"] scan_name = metadata["scan_name"] scan_type = metadata["scan_type"]