Skip to content

Commit df9fbc9

Browse files
committed
FE: Add input autofocus
1 parent 58d8865 commit df9fbc9

File tree

1 file changed

+1
-0
lines changed
  • frontend/src/components/common/NewTable/ColumnFilter/variants/Text

1 file changed

+1
-0
lines changed

frontend/src/components/common/NewTable/ColumnFilter/variants/Text/Text.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const TextFilterInput = <T,>(props: FilterProps<T>) => {
1212
const value = column.getFilterValue() as string;
1313
return (
1414
<Input
15+
autoFocus
1516
value={value}
1617
onChange={({ target }) => {
1718
column.setFilterValue(target?.value ?? '');

0 commit comments

Comments
 (0)