Browse Source

:art: fix https://github.com/siyuan-note/siyuan/issues/5659

Vanessa 2 năm trước cách đây
mục cha
commit
cca8f0c3e4
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      app/src/mobile/util/MobileOutline.ts

+ 1 - 1
app/src/mobile/util/MobileOutline.ts

@@ -28,7 +28,7 @@ export class MobileOutline {
             click: (element: HTMLElement) => {
                 const id = element.getAttribute("data-node-id");
                 fetchPost("/api/block/checkBlockFold", {id}, (foldResponse) => {
-                    openMobileFileById(id, foldResponse.data ? [Constants.CB_GET_FOCUS, Constants.CB_GET_ALL] : [Constants.CB_GET_FOCUS, Constants.CB_GET_SETID, Constants.CB_GET_CONTEXT]);
+                    openMobileFileById(id, foldResponse.data ? [Constants.CB_GET_FOCUS, Constants.CB_GET_ALL, Constants.CB_GET_HTML] : [Constants.CB_GET_FOCUS, Constants.CB_GET_SETID, Constants.CB_GET_CONTEXT, Constants.CB_GET_HTML]);
                 });
             }
         });