1
0

Add recursive content rendering and interaction update in renderer.js

This commit is contained in:
2025-05-26 10:15:27 +02:00
parent da5ab820b9
commit 3e673de031

View File

@@ -444,6 +444,8 @@ function formatCountdown(ms) {
async function renderContent(folderObj) {
closeDropdown();
const folder = folderObj.path;
await renderContent(folderObj);
await updateInteractionBar(folderObj);
titleEl.textContent = folder;
const { head, commits } = await window.electronAPI.getCommits(folderObj);
if (!commits || !commits.length) {