Spaces:
Build error
Build error
Update templates/interface.html
Browse files- templates/interface.html +1 -1
templates/interface.html
CHANGED
|
@@ -114,7 +114,7 @@
|
|
| 114 |
// Populate the speaker options based on data received
|
| 115 |
for (const [speakerId, speakerName] of Object.entries(data.speaker_id_map)) {
|
| 116 |
const option = document.createElement('option');
|
| 117 |
-
option.value =
|
| 118 |
option.textContent = speakerName;
|
| 119 |
speakerSelect.appendChild(option);
|
| 120 |
}
|
|
|
|
| 114 |
// Populate the speaker options based on data received
|
| 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 = speakerName;
|
| 119 |
speakerSelect.appendChild(option);
|
| 120 |
}
|