1
0

auto-git:

[change] renderer.js
This commit is contained in:
2025-05-26 11:04:27 +02:00
parent aaf85e9fd6
commit 610b59a070

View File

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