From b0debf44d6c4944677ae8ab3c3a725d5a3d0c730 Mon Sep 17 00:00:00 2001 From: Sandy Ryza Date: Fri, 2 Aug 2024 07:35:26 -0700 Subject: [PATCH] more --- .../packages/ui-core/src/asset-graph/AssetGraphExplorer.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/js_modules/dagster-ui/packages/ui-core/src/asset-graph/AssetGraphExplorer.tsx b/js_modules/dagster-ui/packages/ui-core/src/asset-graph/AssetGraphExplorer.tsx index 1407477835db6..81714e5609ec6 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/asset-graph/AssetGraphExplorer.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/asset-graph/AssetGraphExplorer.tsx @@ -105,7 +105,7 @@ export const AssetGraphExplorer = (props: Props) => { const {explorerPath, onChangeExplorerPath} = props; - const {button, filterBar, computeKindTagsFilter, storageKindTagsFilter} = + const {button, filterBar, computeKindTagsFilter} = useAssetGraphExplorerFilters({ nodes: React.useMemo( () => (fullAssetGraphData ? Object.values(fullAssetGraphData.nodes) : []), @@ -154,7 +154,6 @@ export const AssetGraphExplorer = (props: Props) => { filterBar={filterBar} filterButton={button} computeKindTagsFilter={computeKindTagsFilter} - storageKindTagsFilter={storageKindTagsFilter} {...props} /> ); @@ -174,7 +173,6 @@ type WithDataProps = Props & { isGlobalGraph?: boolean; trace?: PageLoadTrace; computeKindTagsFilter?: StaticSetFilter; - storageKindTagsFilter?: StaticSetFilter; }; const AssetGraphExplorerWithData = ({ @@ -192,7 +190,6 @@ const AssetGraphExplorerWithData = ({ filterBar, assetFilterState, isGlobalGraph = false, - storageKindTagsFilter, computeKindTagsFilter, trace, }: WithDataProps) => { @@ -634,7 +631,6 @@ const AssetGraphExplorerWithData = ({ definition={graphNode.definition} selected={selectedGraphNodes.includes(graphNode)} computeKindTagsFilter={computeKindTagsFilter} - storageKindTagsFilter={storageKindTagsFilter} /> )}