Gregniuki commited on
Commit
e45cc03
·
1 Parent(s): e23953c

Update templates/interface.html

Browse files
Files changed (1) hide show
  1. 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 = speakerId;
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
  }