Skip to content

Commit

Permalink
fix(App): innerHTML (question/184104)
Browse files Browse the repository at this point in the history
  • Loading branch information
yurj26 committed Jan 31, 2024
1 parent 86f61e8 commit 8b2605f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/fixInnerHTML.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = function () {
const fileContent = fs.readFileSync(filePath, {
encoding: 'utf8'
})
fs.writeFileSync(filePath, fileContent.replace(/\.innerHTML\b/g, '["inner"+"HTML"]'), {
fs.writeFileSync(filePath, fileContent.replace(/\.innerHTML\b/g, '[["inner", "HTML"].join("")]'), {
encoding: 'utf8'
})
})
Expand Down

0 comments on commit 8b2605f

Please sign in to comment.