This commit is contained in:
parent
bfa3e66b16
commit
a4ae8d6b35
1 changed files with 2 additions and 1 deletions
|
@ -517,7 +517,8 @@ export class Toolbar {
|
|||
const currentNewNode = newNodes[i] as HTMLElement;
|
||||
const nextNewNode = newNodes[i + 1] as HTMLElement;
|
||||
if (currentNewNode.nodeType !== 3 && nextNewNode && nextNewNode.nodeType !== 3 &&
|
||||
isArrayEqual(nextNewNode.getAttribute("data-type").split(" "), currentNewNode.getAttribute("data-type").split(" ")) &&
|
||||
nextNewNode.tagName === currentNewNode.tagName &&
|
||||
isArrayEqual((nextNewNode.getAttribute("data-type") || "").split(" "), (currentNewNode.getAttribute("data-type") || "").split(" ")) &&
|
||||
currentNewNode.getAttribute("data-id") === nextNewNode.getAttribute("data-id") &&
|
||||
currentNewNode.getAttribute("data-subtype") === nextNewNode.getAttribute("data-subtype") &&
|
||||
currentNewNode.style.color === nextNewNode.style.color &&
|
||||
|
|
Loading…
Add table
Reference in a new issue