We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents acf7398 + fcc0079 commit 34b4443Copy full SHA for 34b4443
frameworks/keyed/doohtml-dom/js/Main.class.js
@@ -87,8 +87,9 @@ Doo.define(
87
}
88
89
update() {
90
+ const bang = ' !!!'
91
for (let i=0, len = this.data.rows.length;i<len;i+=10) {
- this.tbody.childNodes[i].childNodes[1].childNodes[0].innerText = this.data.rows[i].label += ' !!!'
92
+ this.tbody.childNodes[i].childNodes[1].childNodes[0].firstChild.textContent = this.data.rows[i].label = `${this.data.rows[i].label}${bang}`
93
94
95
0 commit comments