File tree 2 files changed +226
-93
lines changed
packages/pluggableWidgets/rich-text-web/src/utils/formats/quill-table-better/ui
2 files changed +226
-93
lines changed Original file line number Diff line number Diff line change @@ -535,21 +535,18 @@ class TableMenus {
535
535
const attr : Props = align
536
536
? { ...getElementStyle ( td , CELL_PROPERTIES ) , "text-align" : align }
537
537
: getElementStyle ( td , CELL_PROPERTIES ) ;
538
- console . log ( "getSelectedTd Attrs" , align , cellBlot , attr ) ;
539
538
return attr ;
540
539
}
541
540
542
541
getSelectedTdsAttrs ( selectedTds : HTMLElement [ ] ) {
543
542
const map = new Map ( ) ;
544
543
let attribute = null ;
545
- console . log ( "selectedTds" , selectedTds ) ;
546
544
for ( const td of selectedTds ) {
547
545
const attr = this . getSelectedTdAttrs ( td ) ;
548
546
if ( ! attribute ) {
549
547
attribute = attr ;
550
548
continue ;
551
549
}
552
- console . log ( "attr" , attr , Object . keys ( attribute ) ) ;
553
550
for ( const key of Object . keys ( attribute ) ) {
554
551
if ( map . has ( key ) ) continue ;
555
552
if ( attr [ key ] !== attribute [ key ] ) {
You can’t perform that action at this time.
0 commit comments