function createFeatureSelect()

in assets/ml.js [518:532]


function createFeatureSelect(engineIds) {
  const selectContainer = document.getElementById("featureSelect");

  const htmlBlockAll = `
    <option value="all" selected>All</option>
  `
  selectContainer.insertAdjacentHTML("beforeend", htmlBlockAll);

  for (let engineId of engineIds) {
    const htmlBlock = `
        <option value="feature-group-${engineId}">${engineId}</option>
    `;
    selectContainer.insertAdjacentHTML("beforeend", htmlBlock);
  }
}