ソースを参照

:art: https://github.com/siyuan-note/siyuan/issues/12989

Vanessa 8 ヶ月 前
コミット
efa4192278
1 ファイル変更1 行追加1 行削除
  1. 1 1
      app/src/card/openCard.ts

+ 1 - 1
app/src/card/openCard.ts

@@ -203,7 +203,7 @@ export const bindCardEvent = async (options: {
     }
     options.element.setAttribute("data-key", Constants.DIALOG_OPENCARD);
     const actionElements = options.element.querySelectorAll(".card__action");
-    if (options.index === 0) {
+    if (options.index === 0 || typeof options.index === "undefined") {
         actionElements[0].firstElementChild.setAttribute("disabled", "disabled");
     } else {
         actionElements[0].firstElementChild.removeAttribute("disabled");