Skip to content

Commit 7e2987d

Browse files
committed
Fix: resolve Advanced Search button visibility
1 parent 958416d commit 7e2987d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

airflow-core/src/airflow/ui/src/components/SearchBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const SearchBar = ({
4343
buttonProps,
4444
defaultValue,
4545
groupProps,
46-
hideAdvanced = true,
46+
hideAdvanced = false,
4747
hotkeyDisabled = false,
4848
onChange,
4949
placeHolder,

airflow-core/src/airflow/ui/src/pages/DagRuns.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ export const DagRuns = () => {
315315
<Box flex="1" maxW="200px">
316316
<SearchBar
317317
defaultValue={filteredRunIdPattern ?? ""}
318+
hideAdvanced={true}
318319
hotkeyDisabled={false}
319320
onChange={handleRunIdPatternChange}
320321
placeHolder={translate("dags:filters.runIdPatternFilter")}

0 commit comments

Comments
 (0)