diff --git a/renderer.js b/renderer.js index 3f729fe..661ceb0 100644 --- a/renderer.js +++ b/renderer.js @@ -804,7 +804,7 @@ async function loadTerminals() { terminals.forEach(terminal => { choicesData.push({ value: terminal.toString(), - label: `Poste ${terminal}` + label: terminal.toString() // Affichage simple du numéro sans préfixe }); }); } @@ -827,7 +827,7 @@ async function loadTerminals() { terminals.forEach(terminal => { const option = document.createElement('option'); option.value = terminal; - option.textContent = `Poste ${terminal}`; + option.textContent = terminal.toString(); // Affichage simple du numéro sans préfixe terminalSelect.appendChild(option); }); } @@ -903,7 +903,7 @@ async function loadTerminals() { terminals.forEach(terminal => { const option = document.createElement('option'); option.value = terminal; - option.textContent = `Poste ${terminal}`; + option.textContent = terminal.toString(); // Affichage simple du numéro sans préfixe terminalSelect.appendChild(option); }); }