@@ -53,11 +53,11 @@ const UsageFilterParam = withDefault(
5353
5454interface StorageProps {
5555 additionalNodesProps ?: AdditionalNodesProps ;
56- tenant ?: string ;
56+ database ?: string ;
5757 nodeId ?: string ;
5858}
5959
60- export const Storage = ( { additionalNodesProps, tenant , nodeId} : StorageProps ) => {
60+ export const Storage = ( { additionalNodesProps, database , nodeId} : StorageProps ) => {
6161 const [ autoRefreshInterval ] = useAutoRefreshInterval ( ) ;
6262 const [ queryParams , setQueryParams ] = useQueryParams ( {
6363 type : StringParam ,
@@ -91,14 +91,14 @@ export const Storage = ({additionalNodesProps, tenant, nodeId}: StorageProps) =>
9191 const storageType = isNodePage ? STORAGE_TYPES . groups : type ;
9292
9393 const nodesQuery = storageApi . useGetStorageNodesInfoQuery (
94- { tenant , visibleEntities} ,
94+ { database , visibleEntities} ,
9595 {
9696 skip : storageType !== STORAGE_TYPES . nodes ,
9797 pollingInterval : autoRefreshInterval ,
9898 } ,
9999 ) ;
100100 const groupsQuery = storageApi . useGetStorageGroupsInfoQuery (
101- { tenant , visibleEntities, nodeId} ,
101+ { database , visibleEntities, nodeId} ,
102102 {
103103 skip : storageType !== STORAGE_TYPES . groups ,
104104 pollingInterval : autoRefreshInterval ,
0 commit comments