Skip to content

Commit

Permalink
🎨 #12907
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanessa219 committed Oct 30, 2024
1 parent c86910e commit 56e64c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/protyle/wysiwyg/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,8 @@ export class WYSIWYG {
documentSelf.onselect = null;
if (lastCellElement) {
dragFillCellsValue(protyle, nodeElement, originData, originCellIds);
addDragFill(lastCellElement);
const allActiveCellsElement = nodeElement.querySelectorAll(".av__cell--active")
addDragFill(allActiveCellsElement[allActiveCellsElement.length - 1]);
}
return false;
};
Expand Down

0 comments on commit 56e64c9

Please sign in to comment.