Skip to content

Commit

Permalink
_fix line format
Browse files Browse the repository at this point in the history
  • Loading branch information
JiHong88 committed Mar 15, 2023
1 parent 54ebdb8 commit 6fd06fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -6792,7 +6792,7 @@ export default function (context, pluginCallButtons, plugins, lang, options, _re
if (!siblingNode) {
siblingNode = util.getFormatElement(container);
siblingNode = siblingNode ? siblingNode[siblingKey] : null;
if (siblingNode && !util.isComponent(siblingNode)) siblingNode = siblingKey === 'previousSibling' ? siblingNode.firstElementChild : siblingNode.lastElementChild;
if (siblingNode && !util.isComponent(siblingNode)) siblingNode = siblingKey === 'previousSibling' ? siblingNode.firstChild : siblingNode.lastChild;
else return null;
}

Expand Down

0 comments on commit 6fd06fb

Please sign in to comment.