feat: tüit logo in header, clean transcript item layout with grouped action buttons

This commit is contained in:
2026-04-01 14:37:03 +02:00
parent 2ab6e7d73b
commit b74147967b
4 changed files with 133 additions and 9 deletions
+6 -2
View File
@@ -122,7 +122,8 @@ async function loadTranscripts() {
div.className = 'transcript-item';
const name = document.createElement('span');
name.textContent = t.filename.replace('.md', '');
name.className = 'name';
name.textContent = t.filename.replace(/\.md$/, '').replace(/^\d{4}-\d{2}-\d{2}-\d{4}-/, '');
const meta = document.createElement('span');
meta.className = 'meta';
@@ -155,7 +156,10 @@ async function loadTranscripts() {
loadTranscripts();
});
div.append(name, meta, reprocessBtn, delBtn);
const actions = document.createElement('div');
actions.className = 'item-actions';
actions.append(reprocessBtn, delBtn);
div.append(name, meta, actions);
return div;
})
);