From 641ad54800323958fe440ce04761b8efbf672afa Mon Sep 17 00:00:00 2001 From: Dustin Healy <54083382+dustinhealy@users.noreply.github.com> Date: Fri, 5 Dec 2025 08:09:37 -0800 Subject: [PATCH] fix: reach acceptable border outline contrast threshold on My Files search input when focused --- client/src/components/Chat/Input/Files/Table/DataTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Chat/Input/Files/Table/DataTable.tsx b/client/src/components/Chat/Input/Files/Table/DataTable.tsx index 7cf2909841..4b83fcdd3d 100644 --- a/client/src/components/Chat/Input/Files/Table/DataTable.tsx +++ b/client/src/components/Chat/Input/Files/Table/DataTable.tsx @@ -119,7 +119,7 @@ export default function DataTable({ columns, data }: DataTablePro placeholder=" " value={(table.getColumn('filename')?.getFilterValue() as string | undefined) ?? ''} onChange={(event) => table.getColumn('filename')?.setFilterValue(event.target.value)} - className="peer w-full text-sm" + className="peer w-full text-sm focus-visible:border-ring" aria-label={localize('com_files_filter_input')} />