diff --git a/web/src/components/external-uri-link.tsx b/web/src/components/external-uri-link.tsx index 3d9799a..276f0fd 100644 --- a/web/src/components/external-uri-link.tsx +++ b/web/src/components/external-uri-link.tsx @@ -1,10 +1,12 @@ +import { focusRing } from "../lib/focus-ring"; + export function ExternalUriLink({ uri }: { uri: string }) { return ( {uri} diff --git a/web/src/components/ui/combobox.tsx b/web/src/components/ui/combobox.tsx index 9a72ca5..1f677ec 100644 --- a/web/src/components/ui/combobox.tsx +++ b/web/src/components/ui/combobox.tsx @@ -20,7 +20,10 @@ function ComboboxInput({ className, ...props }: ComboboxPrimitive.Input.Props) { return ( ); @@ -31,7 +34,7 @@ function ComboboxClear({ className, ...props }: ComboboxPrimitive.Clear.Props) { ); diff --git a/web/src/objects/objects-table.tsx b/web/src/objects/objects-table.tsx index 756a8bf..2b90bcb 100644 --- a/web/src/objects/objects-table.tsx +++ b/web/src/objects/objects-table.tsx @@ -131,7 +131,7 @@ export function ObjectsTable() {