Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria committed Dec 23, 2024
1 parent e8ee41a commit aabed95
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ export const AutomaterializeMiddlePanelWithData = ({
const runsFilter: RunsFilter | null = useMemo(
() =>
selectedEvaluation?.runIds.length
? selectedEvaluation.runIds.length === 1 && selectedEvaluation.runIds[0]?.length === backfillIdLength
? selectedEvaluation.runIds.length === 1 &&
selectedEvaluation.runIds[0]?.length === backfillIdLength
? {tags: [{key: 'dagster/backfill', value: selectedEvaluation.runIds[0]}]}
: {runIds: selectedEvaluation.runIds}
: null,
Expand Down

0 comments on commit aabed95

Please sign in to comment.