From 5b91434ac405f5b17a75664d25db89a90aedd69d Mon Sep 17 00:00:00 2001 From: Alexander Brown Date: Mon, 8 Dec 2025 23:33:08 -0800 Subject: [PATCH] Cleanup: Sidebar Tabs component and style alignment (#7215) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Unify the current sidebar tabs, structurally and aesthetically. ## Changes - Removes the Assets only Layout - Standardizes the title styling and spacing across the tabs. ## Review Focus ## Screenshots (if applicable) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7215-WIP-Sidebar-Tabs-component-and-style-alignment-2c26d73d3650817193bfd752e0d0bbde) by [Unito](https://www.unito.io) --- src/components/bottomPanel/BottomPanel.vue | 4 +- src/components/common/TreeExplorer.vue | 2 +- .../rightSidePanel/RightSidePanel.vue | 2 +- .../sidebar/tabs/AssetSidebarTemplate.vue | 36 ------ .../sidebar/tabs/AssetsSidebarTab.vue | 36 +++--- .../sidebar/tabs/ModelLibrarySidebarTab.vue | 5 +- .../sidebar/tabs/NodeLibrarySidebarTab.vue | 1 - .../sidebar/tabs/SidebarTabTemplate.vue | 11 +- .../sidebar/tabs/WorkflowsSidebarTab.vue | 2 +- .../sidebar/tabs/nodeLibrary/NodeHelpPage.vue | 2 +- src/locales/en/main.json | 111 +++++++++--------- .../assets/components/MediaAssetFilterBar.vue | 2 +- .../components/manager/infoPanel/InfoTabs.vue | 10 +- 13 files changed, 99 insertions(+), 125 deletions(-) delete mode 100644 src/components/sidebar/tabs/AssetSidebarTemplate.vue diff --git a/src/components/bottomPanel/BottomPanel.vue b/src/components/bottomPanel/BottomPanel.vue index f1705d0af..cbf4fc134 100644 --- a/src/components/bottomPanel/BottomPanel.vue +++ b/src/components/bottomPanel/BottomPanel.vue @@ -10,12 +10,12 @@ class="bg-transparent" >
-
+
{{ tab.label() }} diff --git a/src/components/sidebar/tabs/AssetSidebarTemplate.vue b/src/components/sidebar/tabs/AssetSidebarTemplate.vue deleted file mode 100644 index 97f75d13d..000000000 --- a/src/components/sidebar/tabs/AssetSidebarTemplate.vue +++ /dev/null @@ -1,36 +0,0 @@ - - - diff --git a/src/components/sidebar/tabs/AssetsSidebarTab.vue b/src/components/sidebar/tabs/AssetsSidebarTab.vue index 2d3b57b01..57afb4dd4 100644 --- a/src/components/sidebar/tabs/AssetsSidebarTab.vue +++ b/src/components/sidebar/tabs/AssetsSidebarTab.vue @@ -1,19 +1,21 @@