Moments before disaster

This commit is contained in:
lwark
2025-08-14 09:52:01 -05:00
parent 6f58030e75
commit 87efb18518
6 changed files with 519 additions and 455 deletions

View File

@@ -134,7 +134,7 @@ class ProcedureCreation(QDialog):
tips = next((tps for tps in equipment.tips if tps.name == tips), None)
if tips:
eoi.tips = tips.to_pydantic()
self.procedure.equipment.append(eoi)
self.procedure.equipment.append(eoi)
logger.debug(f"Updated equipment: {self.procedure.equipment}")
@pyqtSlot(str, str)

View File

@@ -110,7 +110,7 @@ class SubmissionDetails(QDialog):
@pyqtSlot(str)
def process_details(self, process: str | Process):
logger.debug(f"Equipment details")
logger.debug(f"Process details")
if isinstance(process, str):
process = Process.query(name=process)
base_dict = process.to_sub_dict(full_data=True)