From 0b3da4b2d10d3f0315209763b45def66aca46661 Mon Sep 17 00:00:00 2001 From: Christopher Fenner Date: Mon, 7 Feb 2022 17:11:14 +0100 Subject: [PATCH] respect encoded text from translation --- MMM-SystemStats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MMM-SystemStats.js b/MMM-SystemStats.js index 1c5d029..a2f6b4c 100644 --- a/MMM-SystemStats.js +++ b/MMM-SystemStats.js @@ -126,7 +126,7 @@ Module.register('MMM-SystemStats', { var c3 = document.createElement('td'); c3.setAttribute('class', 'value'); c3.style.textAlign = self.config.align; - c3.innerText = self.stats[item]; + c3.innerHTML = self.stats[item]; row.appendChild(c3); wrapper.appendChild(row);