Skip to content

Commit c8b5183

Browse files
committed
[DOP-29615] Fix search bar width limit
1 parent d7ea3ff commit c8b5183

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/job/JobRaListFilters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const JobRaListFilters = () => {
3636
<JobTypeRaFilter />
3737
</Box>
3838

39-
<Box component="span" mr={2} sx={{ flex: 0.3 }}>
39+
<Box component="span" mr={2} sx={{ flex: "0.3 1 1" }}>
4040
{/* Not using SearchInput here because it doesn't match styles with other filters */}
4141
<TextInput
4242
source="search_query"

src/components/run/RunRaListFilters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const RunRaListFilters = () => {
7575
/>
7676
</Box>
7777

78-
<Box component="span" mr={2} sx={{ flex: 1 }}>
78+
<Box component="span" mr={2} sx={{ flex: "0.5 1 1" }}>
7979
{/* Not using SearchInput here because it doesn't match styles with other filters */}
8080
<TextInput
8181
source="search_query"

0 commit comments

Comments
 (0)