Browse Source

Merge pull request #7515 from wenzhixin/fix/td-style

Fixed td style bug and release a new version
文翼 1 year ago
parent
commit
6e61b8c588
2 changed files with 2 additions and 2 deletions
  1. 1 1
      CHANGELOG.md
  2. 1 1
      src/utils/index.js

+ 1 - 1
CHANGELOG.md

@@ -1,7 +1,7 @@
 ChangeLog
 ChangeLog
 ---------
 ---------
 
 
-### 1.23.3
+### 1.23.4
 
 
 ### Core
 ### Core
 
 

+ 1 - 1
src/utils/index.js

@@ -753,7 +753,7 @@ export default {
       })
       })
     } else if (Array.isArray(style)) {
     } else if (Array.isArray(style)) {
       for (const item of style) {
       for (const item of style) {
-        this.parseStyle(item)
+        this.parseStyle(dom, item)
       }
       }
     } else if (typeof style === 'object') {
     } else if (typeof style === 'object') {
       for (const [k, v] of Object.entries(style)) {
       for (const [k, v] of Object.entries(style)) {