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 += `
  • `;