Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7f8c3e commit d40167fCopy full SHA for d40167f
site/src/components/SearchField/SearchField.tsx
@@ -21,9 +21,8 @@ export const SearchField: FC<SearchFieldProps> = ({
21
const theme = useTheme();
22
return (
23
<TextField
24
- // Have to specify min width so that, as we keep adding more and
25
- // control options to the filter row, the text box doesn't have a
26
- // risk of shrinking so much that it becomes un-clickable
+ // Specifying `minWidth` so that the text box can't shrink so much
+ // that it becomes un-clickable as we add more filter controls
27
css={{ minWidth: "320px" }}
28
size="small"
29
value={value}
0 commit comments