소스 검색

:art: 推送

Vanessa 7 달 전
부모
커밋
5b413d6fb4
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      app/src/dialog/processSystem.ts

+ 4 - 4
app/src/dialog/processSystem.ts

@@ -179,14 +179,14 @@ export const setDefRefCount = (data: {
             const attrElement = editor.protyle.title.element.querySelector(".protyle-attr");
             const countElement = attrElement.querySelector(".protyle-attr--refcount");
             if (countElement) {
-                if (data.refCount === 0) {
+                if (data.rootRefCount === 0) {
                     countElement.remove();
                 } else {
-                    countElement.textContent = data.refCount.toString();
+                    countElement.textContent = data.rootRefCount.toString();
                     countElement.setAttribute("data-id", JSON.stringify(data.refIDs));
                 }
-            } else if (data.refCount > 0) {
-                attrElement.insertAdjacentHTML("beforeend", `<div class="protyle-attr--refcount popover__block" data-defids="[&quot;${data.blockID}&quot;]" data-id="${JSON.stringify(data.refIDs)}" style="">${data.refCount}</div>`);
+            } else if (data.rootRefCount > 0) {
+                attrElement.insertAdjacentHTML("beforeend", `<div class="protyle-attr--refcount popover__block" data-defids="[&quot;${data.blockID}&quot;]" data-id="${JSON.stringify(data.refIDs)}" style="">${data.rootRefCount}</div>`);
             }
             return;
         }