Skip to content

Commit ccda512

Browse files
committed
fix: update pnpm lock
1 parent c4c383d commit ccda512

File tree

2 files changed

+226
-93
lines changed

2 files changed

+226
-93
lines changed

packages/pluggableWidgets/rich-text-web/src/utils/formats/quill-table-better/ui/table-menus.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -535,21 +535,18 @@ class TableMenus {
535535
const attr: Props = align
536536
? { ...getElementStyle(td, CELL_PROPERTIES), "text-align": align }
537537
: getElementStyle(td, CELL_PROPERTIES);
538-
console.log("getSelectedTd Attrs", align, cellBlot, attr);
539538
return attr;
540539
}
541540

542541
getSelectedTdsAttrs(selectedTds: HTMLElement[]) {
543542
const map = new Map();
544543
let attribute = null;
545-
console.log("selectedTds", selectedTds);
546544
for (const td of selectedTds) {
547545
const attr = this.getSelectedTdAttrs(td);
548546
if (!attribute) {
549547
attribute = attr;
550548
continue;
551549
}
552-
console.log("attr", attr, Object.keys(attribute));
553550
for (const key of Object.keys(attribute)) {
554551
if (map.has(key)) continue;
555552
if (attr[key] !== attribute[key]) {

0 commit comments

Comments
 (0)