diff --git a/printer_installer_map.asp b/printer_installer_map.asp index 8d9189c..9506964 100644 --- a/printer_installer_map.asp +++ b/printer_installer_map.asp @@ -406,10 +406,12 @@ function updateSelectionUI() { var html = ''; for (var printerId in selectedPrinters) { var printer = printerData[printerId]; + // Use CSF name if available, otherwise fall back to location + var displayName = (printer.csf && printer.csf !== '') ? printer.csf : printer.location; html += '
' + '×' + - '' + (printer.csf || 'N/A') + '
' + - '' + printer.location + '' + + '' + displayName + '
' + + '' + printer.model + '' + '
'; } container.innerHTML = html;