Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria committed Dec 20, 2024
1 parent 3ccb142 commit f2373ce
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export const AutomaterializeMiddlePanelWithData = ({
{flagLegacyRunsPage ? (
<AutomaterializeRunsTable runIds={selectedEvaluation.runIds} />
) : runsFilter ? (
<RunsFeedTableWithFilters filter={runsFilter} includeRunsFromBackfills={false}/>
<RunsFeedTableWithFilters filter={runsFilter} includeRunsFromBackfills={false} />
) : (
<Box padding={{vertical: 12}}>
<NonIdealState
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const EvaluationRunInfo = ({runIds, timestamp}: EvaluationRunInfoProps) => {
}
/>
<div style={{flex: 1, overflowY: 'auto'}}>
<RunsFeedTableWithFilters filter={{runIds}} includeRunsFromBackfills={true}/>
<RunsFeedTableWithFilters filter={{runIds}} includeRunsFromBackfills={true} />
</div>
<DialogFooter topBorder>
<Button onClick={() => setIsOpen(false)}>Done</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,11 @@ export const ScheduleRoot = (props: Props) => {
tabs={tabs}
/>
) : (
<RunsFeedTableWithFilters filter={runsFilter} actionBarComponents={tabs} includeRunsFromBackfills={true}/>
<RunsFeedTableWithFilters
filter={runsFilter}
actionBarComponents={tabs}
includeRunsFromBackfills={true}
/>
)}
</Page>
);
Expand Down

0 comments on commit f2373ce

Please sign in to comment.