From fa5c708b3176ffe9b96bf25d92827466eee7e80c Mon Sep 17 00:00:00 2001 From: lelo Date: Tue, 6 May 2025 18:27:42 +0000 Subject: [PATCH] allow transcript for all --- static/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app.js b/static/app.js index 3f35783..66206f3 100644 --- a/static/app.js +++ b/static/app.js @@ -121,7 +121,7 @@ function renderContent(data) { const indexAttr = file.file_type === 'music' ? ` data-index="${currentMusicFiles.length - 1}"` : ''; contentHTML += `
  • ${symbol} ${file.name.replace('.mp3', '')}`; - if (file.has_transcript && admin_enabled) { + if (file.has_transcript) { contentHTML += `📄`; } contentHTML += `
  • `;