Use innerHTML instead of append to fix gravity color output

Signed-off-by: yubiuser <github@yubiuser.dev>
This commit is contained in:
yubiuser
2025-07-16 09:03:23 +02:00
parent 3182af0d29
commit 1c753f7cc6

View File

@@ -138,7 +138,7 @@ function parseLines(outputElement, text) {
});
// Append the new text to the end of the output
outputElement.append(line);
outputElement.innerHTML += line;
}
}