Skip to content

Commit

Permalink
fix: respect encoded text from translation BenRoe#53
Browse files Browse the repository at this point in the history
  • Loading branch information
shin10 committed Mar 23, 2022
1 parent c747721 commit 729e8e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MMM-SystemStats.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Module.register("MMM-SystemStats", {
var c1 = document.createElement("td");
c1.setAttribute("class", "title");
c1.style.textAlign = self.config.align;
c1.innerText = self.translate(sysData[item].text);
c1.innerHTML = self.translate(sysData[item].text);
row.appendChild(c1);
}

Expand Down

0 comments on commit 729e8e8

Please sign in to comment.