Skip to content

Commit

Permalink
fix(compact lineage tab): do not use viewUrn as input for searchAcros…
Browse files Browse the repository at this point in the history
…sLineage graphql call
  • Loading branch information
mattseddon committed Feb 28, 2025
1 parent 79178e5 commit 19a2860
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ export const CompactLineageTab = ({ defaultDirection }: { defaultDirection: Line
defaultFilters={[]}
showFilterBar={showAdvancedFilters}
fixedFilters={levelFilters}
applyView={false}
/>
</LineageTabContext.Provider>
</Results>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ type Props = {
setSkipCache?: (skipCache: boolean) => void;
resetShouldRefetch?: () => void;
setIsLoading?: React.Dispatch<React.SetStateAction<boolean>>;
applyView?: boolean;
};

export const ImpactAnalysis = ({
Expand All @@ -40,6 +41,7 @@ export const ImpactAnalysis = ({
setSkipCache,
resetShouldRefetch,
setIsLoading,
applyView = true,
}: Props) => {
const finalStartTimeMillis = startTimeMillis || undefined;
const finalEndTimeMillis = endTimeMillis || undefined;
Expand Down Expand Up @@ -80,7 +82,7 @@ export const ImpactAnalysis = ({
resetShouldRefetch={resetShouldRefetch}
placeholderText="Search related assets..."
showFilterBar={showFilterBar}
applyView
applyView={applyView}
/>
);
};

0 comments on commit 19a2860

Please sign in to comment.