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

Update templates/interface.html

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