File tree Expand file tree Collapse file tree 2 files changed +226
-93
lines changed
packages/pluggableWidgets/rich-text-web/src/utils/formats/quill-table-better/ui Expand file tree Collapse file tree 2 files changed +226
-93
lines changed Original file line number Diff line number Diff 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 ] ) {
You can’t perform that action at this time.
0 commit comments