Vanessa 2024-11-16 12:06:15 +08:00
parent 1c100950bd
commit eb28a44022

View file

@ -173,6 +173,9 @@ export const setDefRefCount = (data: {
}) => { }) => {
getAllEditor().forEach(editor => { getAllEditor().forEach(editor => {
if (data.rootID === data.blockID && editor.protyle.block.rootID === data.rootID) { if (data.rootID === data.blockID && editor.protyle.block.rootID === data.rootID) {
if (!editor.protyle.title) {
return;
}
const attrElement = editor.protyle.title.element.querySelector(".protyle-attr"); const attrElement = editor.protyle.title.element.querySelector(".protyle-attr");
const countElement = attrElement.querySelector(".protyle-attr--refcount"); const countElement = attrElement.querySelector(".protyle-attr--refcount");
if (countElement) { if (countElement) {