From 42823c0e9474d0466680d37ea6a4d9dfb215a938 Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Thu, 7 Aug 2025 06:21:52 +0200 Subject: [PATCH] fix: missing type property for Reset context menu item in ResizableSidebar --- components/UserInterface/ResizableSidebar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/UserInterface/ResizableSidebar.vue b/components/UserInterface/ResizableSidebar.vue index 27b0730..79e95bd 100644 --- a/components/UserInterface/ResizableSidebar.vue +++ b/components/UserInterface/ResizableSidebar.vue @@ -34,7 +34,7 @@ const storedWidth = ref(); const contextMenu = useState("contextMenu"); const menuItems: ContextMenuItem[] = [ - { name: "Reset", callback: () => { + { name: "Reset", type: "normal", callback: () => { const defaultWidth = props.width ?? props.minWidth; resizableSidebar.value!.style.width = defaultWidth; if (props.localStorageName) {