From 2e33afebd1b734139f00c859da0a0ab856ea79d4 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Sun, 2 Nov 2025 01:03:10 -0700 Subject: [PATCH] Issue #142 Resolved --- Data/Engine/web-interface/src/App.jsx | 2 +- Data/Engine/web-interface/src/Assemblies/Assembly_List.jsx | 2 +- Data/Engine/web-interface/src/{ => Flow_Editor}/Status_Bar.jsx | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename Data/Engine/web-interface/src/{ => Flow_Editor}/Status_Bar.jsx (100%) diff --git a/Data/Engine/web-interface/src/App.jsx b/Data/Engine/web-interface/src/App.jsx index 071c5a8d..114296f9 100644 --- a/Data/Engine/web-interface/src/App.jsx +++ b/Data/Engine/web-interface/src/App.jsx @@ -28,7 +28,7 @@ import { import FlowTabs from "./Flow_Editor/Flow_Tabs"; import FlowEditor from "./Flow_Editor/Flow_Editor"; import NodeSidebar from "./Flow_Editor/Node_Sidebar"; -import StatusBar from "./Status_Bar"; +import StatusBar from "./Flow_Editor/Status_Bar.jsx"; // Borealis Page Imports import Login from "./Login.jsx"; diff --git a/Data/Engine/web-interface/src/Assemblies/Assembly_List.jsx b/Data/Engine/web-interface/src/Assemblies/Assembly_List.jsx index f0bad086..b53a18b8 100644 --- a/Data/Engine/web-interface/src/Assemblies/Assembly_List.jsx +++ b/Data/Engine/web-interface/src/Assemblies/Assembly_List.jsx @@ -319,7 +319,7 @@ export default function AssemblyList({ onOpenWorkflow, onOpenScript }) { { colId: "assemblyType", field: "assemblyType", - headerName: "Assembly Type", + headerName: "Type", valueGetter: (params) => TYPE_METADATA[params?.data?.typeKey]?.label || "", cellRenderer: TypeCellRenderer, minWidth: 160, diff --git a/Data/Engine/web-interface/src/Status_Bar.jsx b/Data/Engine/web-interface/src/Flow_Editor/Status_Bar.jsx similarity index 100% rename from Data/Engine/web-interface/src/Status_Bar.jsx rename to Data/Engine/web-interface/src/Flow_Editor/Status_Bar.jsx