Skip to content

Commit 09c362b

Browse files
committed
Fix null fields on load widget
1 parent 8df3986 commit 09c362b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arho_feature_template/gui/load_plan_dialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def load_plans(self):
112112
p.plan_type_id = pt.id;
113113
""")
114114
for plan in plans:
115-
self.model.appendRow([QStandardItem(column) for column in plan])
115+
self.model.appendRow([QStandardItem(column or "") for column in plan])
116116

117117
except Exception as e: # noqa: BLE001
118118
QMessageBox.critical(self, "Error", f"Failed to load plans: {e}")

0 commit comments

Comments
 (0)