Spaces:
Runtime error
Runtime error
Update templates/interface.html
Browse files- templates/interface.html +1 -1
templates/interface.html
CHANGED
|
@@ -115,7 +115,7 @@
|
|
| 115 |
for (const [speakerId, speakerName] of Object.entries(data.speaker_id_map)) {
|
| 116 |
const option = document.createElement('option');
|
| 117 |
option.value = speakerName;
|
| 118 |
-
option.textContent =
|
| 119 |
speakerSelect.appendChild(option);
|
| 120 |
}
|
| 121 |
})
|
|
|
|
| 115 |
for (const [speakerId, speakerName] of Object.entries(data.speaker_id_map)) {
|
| 116 |
const option = document.createElement('option');
|
| 117 |
option.value = speakerName;
|
| 118 |
+
option.textContent = speakerId;
|
| 119 |
speakerSelect.appendChild(option);
|
| 120 |
}
|
| 121 |
})
|