Ver a proveniência

font fix 3

Sviluppo_Carrello_Immagini
Lorenzo Pollutri há 1 mês
ascendente
cometimento
e3c0cde533
1 ficheiros alterados com 6 adições e 1 eliminações
  1. +6
    -1
      app/admin/page.tsx

+ 6
- 1
app/admin/page.tsx Ver ficheiro

@@ -31,6 +31,11 @@ function CardTypeSelect({
}, [open]);
const current = options.find(o => o.value === value);
// Fallback: se il value non matcha nessuna opzione (es. tipo disattivato dalla flag), mostra il valore raw prettificato
const displayLabel = current?.label
?? (typeof value === 'string' && value.length > 0
? value.replace(/_/g, ' ').toLowerCase().replace(/\b\w/g, c => c.toUpperCase())
: '');
const inputBase = "w-full border border-gray-300 p-2.5 rounded-lg outline-none focus:ring-2 focus:ring-blue-500 bg-white text-gray-900";
return (
@@ -40,7 +45,7 @@ function CardTypeSelect({
onClick={() => setOpen(o => !o)}
className={`${inputBase} text-left flex items-center justify-between cursor-pointer`}
>
<span>{current?.label || ''}</span>
<span className={displayLabel ? '' : 'text-gray-400'}>{displayLabel || 'Seleziona…'}</span>
<span className={`text-gray-500 transition-transform ${open ? 'rotate-180' : ''}`}>▾</span>
</button>
{open && (


Carregando…
Cancelar
Guardar