From d5b6abee8e5b38ca4f4bcd5ea24116ba01a809cc Mon Sep 17 00:00:00 2001 From: ciregenz Date: Wed, 10 Jun 2026 20:08:10 -0700 Subject: [PATCH] [eric] ui: distinguish Dashboards (space-dashboard) from Apps (widgets) + cleaner sidebar-toggle glyph --- frontend/src/app/components/Layout/AppShell.tsx | 4 ++-- .../src/app/pages/DashboardSelection/DashboardSelection.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/components/Layout/AppShell.tsx b/frontend/src/app/components/Layout/AppShell.tsx index 42943a27..5abd517c 100644 --- a/frontend/src/app/components/Layout/AppShell.tsx +++ b/frontend/src/app/components/Layout/AppShell.tsx @@ -15,7 +15,7 @@ import Alert from '@mui/material/Alert'; import InputBase from '@mui/material/InputBase'; // One outlined icon language for the sidebar: thin monoline glyphs (not the // filled Material clip-art) so the rail reads as designed, not assembled. -import DashboardIcon from '@mui/icons-material/GridViewOutlined'; +import DashboardIcon from '@mui/icons-material/SpaceDashboardOutlined'; import PsychologyIcon from '@mui/icons-material/PsychologyOutlined'; import BuildIcon from '@mui/icons-material/BuildOutlined'; import TuneIcon from '@mui/icons-material/TuneOutlined'; @@ -24,7 +24,7 @@ import ExpandMoreIcon from '@mui/icons-material/ExpandMore'; import AddIcon from '@mui/icons-material/Add'; import SettingsIcon from '@mui/icons-material/SettingsOutlined'; import ExtensionIcon from '@mui/icons-material/PaletteOutlined'; -import ViewSidebarOutlinedIcon from '@mui/icons-material/ViewSidebarOutlined'; +import ViewSidebarOutlinedIcon from '@mui/icons-material/VerticalSplitOutlined'; import ArrowBackOutlinedIcon from '@mui/icons-material/ArrowBackOutlined'; import ArrowForwardOutlinedIcon from '@mui/icons-material/ArrowForwardOutlined'; import RestartAltIcon from '@mui/icons-material/RestartAlt'; diff --git a/frontend/src/app/pages/DashboardSelection/DashboardSelection.tsx b/frontend/src/app/pages/DashboardSelection/DashboardSelection.tsx index 7fb30610..5fc7d8c9 100644 --- a/frontend/src/app/pages/DashboardSelection/DashboardSelection.tsx +++ b/frontend/src/app/pages/DashboardSelection/DashboardSelection.tsx @@ -11,7 +11,7 @@ import MenuItem from '@mui/material/MenuItem'; import ListItemIcon from '@mui/material/ListItemIcon'; import ListItemText from '@mui/material/ListItemText'; import AddIcon from '@mui/icons-material/Add'; -import DashboardIcon from '@mui/icons-material/GridViewOutlined'; +import DashboardIcon from '@mui/icons-material/SpaceDashboardOutlined'; import DeleteOutlineIcon from '@mui/icons-material/DeleteOutline'; import { Skeleton } from '@/app/components/feedback/Loading'; import ContentCopyIcon from '@mui/icons-material/ContentCopy';