test: change Clear to BORRAR to verify user view

This commit is contained in:
Christian Vidal Wolf
2026-04-08 17:02:35 +02:00
parent f3f9f1547f
commit 29f3a469fe
+5 -4
View File
@@ -76,7 +76,7 @@ export function ColumnFilterPopover({
</div>
<div className="flex items-center justify-between pt-2 border-t border-slate-700 mt-1">
<div className="flex items-center gap-4">
<div className="flex items-center gap-3">
<button
onClick={() => {
if (isAllSelected) {
@@ -85,15 +85,16 @@ export function ColumnFilterPopover({
onSelectAll(uniqueValues);
}
}}
className="text-[11px] font-bold text-slate-400 hover:text-white transition-colors"
className="text-[10px] font-black text-indigo-400 hover:text-indigo-300 transition-colors uppercase tracking-tight"
>
{isAllSelected ? 'Deselect All' : 'Select All'}
</button>
<span className="text-slate-600 font-bold"></span>
<button
onClick={onClear}
className="text-[11px] font-bold text-slate-400 hover:text-white transition-colors"
className="text-[10px] font-bold text-slate-400 hover:text-white transition-colors uppercase tracking-tight"
>
Clear Current
BORRAR
</button>
</div>
<button