From 26f1d98b465abd033269ffefcdc7a5e5f8b17af7 Mon Sep 17 00:00:00 2001 From: Steve White Date: Fri, 6 Jun 2025 11:35:39 -0500 Subject: [PATCH] Fixed Play button to match other icons --- frontend/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/js/app.js b/frontend/js/app.js index 7a44719..689a2b7 100644 --- a/frontend/js/app.js +++ b/frontend/js/app.js @@ -319,7 +319,7 @@ async function initializeDialogEditor() { // --- NEW: Per-line Play button --- const playBtn = document.createElement('button'); - playBtn.innerHTML = '▶️'; + playBtn.innerHTML = '⏵'; playBtn.title = item.audioUrl ? 'Play generated audio' : 'No audio generated yet'; playBtn.className = 'play-line-btn'; playBtn.disabled = !item.audioUrl;