1
0

Revert typo fix in renderer.js

This commit is contained in:
2025-05-26 10:50:47 +02:00
parent 14698a1f99
commit ed844383c3

View File

@@ -371,8 +371,8 @@ async function updateInteractionBar(folderObj) {
}
// In die Bar schreiben
document.getElementById('commitsToday').textContent = commitsToday;
const [r, g, b] = getCommitColor(commitsToday);
document.getElementById('commitsToday').textContent = commitsToday;
document.getElementById('commitsToday').style.color = `rgb(${r},${g},${b})`;
document.getElementById('linesUntilRewrite').textContent = linesUntilRewrite;
document.getElementById('countdown').textContent = countdown;