1
0

Fix typo in renderer.js

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

View File

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