From f2373ce20f62cc562eb01c6a16b8a4f247f97740 Mon Sep 17 00:00:00 2001 From: JamieDeMaria Date: Fri, 20 Dec 2024 11:23:34 -0800 Subject: [PATCH] update --- .../AutomaterializeMiddlePanelWithData.tsx | 2 +- .../assets/AutoMaterializePolicyPage/EvaluationListRow.tsx | 2 +- .../dagster-ui/packages/ui-core/src/runs/RunsFeedTable.tsx | 6 +++++- .../packages/ui-core/src/schedules/ScheduleRoot.tsx | 6 +++++- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/js_modules/dagster-ui/packages/ui-core/src/assets/AutoMaterializePolicyPage/AutomaterializeMiddlePanelWithData.tsx b/js_modules/dagster-ui/packages/ui-core/src/assets/AutoMaterializePolicyPage/AutomaterializeMiddlePanelWithData.tsx index 3169925651d80..4c60427ef13c9 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/assets/AutoMaterializePolicyPage/AutomaterializeMiddlePanelWithData.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/assets/AutoMaterializePolicyPage/AutomaterializeMiddlePanelWithData.tsx @@ -174,7 +174,7 @@ export const AutomaterializeMiddlePanelWithData = ({ {flagLegacyRunsPage ? ( ) : runsFilter ? ( - + ) : ( { } />
- +
diff --git a/js_modules/dagster-ui/packages/ui-core/src/runs/RunsFeedTable.tsx b/js_modules/dagster-ui/packages/ui-core/src/runs/RunsFeedTable.tsx index 1089f49159978..8246ec077097f 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/runs/RunsFeedTable.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/runs/RunsFeedTable.tsx @@ -240,7 +240,11 @@ export const RunsFeedTableWithFilters = ({ RunsFeedTableProps, 'actionBarComponents' | 'belowActionBarComponents' | 'emptyState' | 'hideTags' | 'scroll' >) => { - const {entries, paginationProps, queryResult} = useRunsFeedEntries(filter, 'all', includeRunsFromBackfills); + const {entries, paginationProps, queryResult} = useRunsFeedEntries( + filter, + 'all', + includeRunsFromBackfills, + ); const refreshState = useQueryRefreshAtInterval(queryResult, FIFTEEN_SECONDS); function content() { diff --git a/js_modules/dagster-ui/packages/ui-core/src/schedules/ScheduleRoot.tsx b/js_modules/dagster-ui/packages/ui-core/src/schedules/ScheduleRoot.tsx index 4704eaa56c042..c980f05650fb9 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/schedules/ScheduleRoot.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/schedules/ScheduleRoot.tsx @@ -133,7 +133,11 @@ export const ScheduleRoot = (props: Props) => { tabs={tabs} /> ) : ( - + )} );