diff --git a/Data/Server/WebUI/src/Assemblies/Assembly_Editor.jsx b/Data/Server/WebUI/src/Assemblies/Assembly_Editor.jsx index 2c3097d..0516d70 100644 --- a/Data/Server/WebUI/src/Assemblies/Assembly_Editor.jsx +++ b/Data/Server/WebUI/src/Assemblies/Assembly_Editor.jsx @@ -629,55 +629,76 @@ export default function AssemblyEditor({ - - + + Overview - {currentPath ? ( - - - - ) : null} - {currentPath ? ( - - - - ) : null} - + {currentPath ? ( + + + + ) : null} + {currentPath ? ( + + + + ) : null} + + @@ -792,7 +813,10 @@ export default function AssemblyEditor({ label="Site Scope" value={siteScopeValue} onChange={(e) => updateSitesMode(e.target.value)} - sx={{ ...SELECT_BASE_SX, flex: 1 }} + sx={{ + ...SELECT_BASE_SX, + width: { xs: "100%", sm: 320, lg: 360 } + }} SelectProps={{ MenuProps: MENU_PROPS }} > All Sites @@ -805,7 +829,10 @@ export default function AssemblyEditor({ label="Allowed Sites" value={selectedSiteValues} onChange={(e) => updateSelectedSites(Array.isArray(e.target.value) ? e.target.value : [])} - sx={{ ...SELECT_BASE_SX, flex: 1 }} + sx={{ + ...SELECT_BASE_SX, + width: { xs: "100%", sm: 360, lg: 420 } + }} SelectProps={{ multiple: true, renderValue: (selected) => {