فهرست منبع

fix(app): sidebar toggle on desktop

Adam 2 ماه پیش
والد
کامیت
472a6cc83e
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      packages/app/src/components/titlebar.tsx

+ 2 - 1
packages/app/src/components/titlebar.tsx

@@ -17,6 +17,7 @@ export function Titlebar() {
   const reserve = createMemo(
   const reserve = createMemo(
     () => platform.platform === "desktop" && (platform.os === "windows" || platform.os === "linux"),
     () => platform.platform === "desktop" && (platform.os === "windows" || platform.os === "linux"),
   )
   )
+  const web = createMemo(() => platform.platform === "web")
 
 
   const getWin = () => {
   const getWin = () => {
     if (platform.platform !== "desktop") return
     if (platform.platform !== "desktop") return
@@ -88,7 +89,7 @@ export function Titlebar() {
           onClick={layout.mobileSidebar.toggle}
           onClick={layout.mobileSidebar.toggle}
         />
         />
         <TooltipKeybind
         <TooltipKeybind
-          class="hidden xl:flex shrink-0 ml-14"
+          class={web() ? "hidden xl:flex shrink-0 ml-14" : "hidden xl:flex shrink-0"}
           placement="bottom"
           placement="bottom"
           title="Toggle sidebar"
           title="Toggle sidebar"
           keybind={command.keybind("sidebar.toggle")}
           keybind={command.keybind("sidebar.toggle")}