diff --git a/web/components/LayoutViews/Detail/Detail.vue b/web/components/LayoutViews/Detail/Detail.vue index c29839d58..31f5bad7e 100644 --- a/web/components/LayoutViews/Detail/Detail.vue +++ b/web/components/LayoutViews/Detail/Detail.vue @@ -51,7 +51,6 @@ const selectedTab = ref(props.defaultTabKey || '0'); const selectedItems = ref([]); const expandedGroups = ref>({}); const autostartEnabled = ref(true); -const sidebarOpen = ref(false); // Initialize expanded state for groups const initializeExpandedState = () => { @@ -127,76 +126,28 @@ const handleManageSelectedAction = (action: string) => { const handleManageItemAction = (action: string) => { console.log('Manage item action:', action); }; - -const toggleSidebar = () => { - sidebarOpen.value = !sidebarOpen.value; -}; - -const closeSidebar = () => { - sidebarOpen.value = false; -};