File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
src/containers/Tenant/Schema/SchemaTree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import {useDispatch} from 'react-redux';
44import { NavigationTree } from 'ydb-ui-components' ;
55
66import { setCurrentSchemaPath , getSchema , preloadSchemas } from '../../../../store/reducers/schema' ;
7- import { getDescribe } from '../../../../store/reducers/describe' ;
87import { getSchemaAcl } from '../../../../store/reducers/schemaAcl' ;
98import type { EPathType , TEvDescribeSchemeResult } from '../../../../types/api/schema' ;
109
@@ -30,7 +29,7 @@ export function SchemaTree(props: SchemaTreeProps) {
3029 const { PathDescription : { Children = [ ] } = { } } = data ;
3130
3231 const preloadedData : Record < string , TEvDescribeSchemeResult > = {
33- [ path ] : data
32+ [ path ] : data ,
3433 } ;
3534
3635 const childItems = Children . map ( ( childData ) => {
@@ -56,7 +55,6 @@ export function SchemaTree(props: SchemaTreeProps) {
5655 const handleActivePathUpdate = ( activePath : string ) => {
5756 dispatch ( setCurrentSchemaPath ( activePath ) ) ;
5857 dispatch ( getSchema ( { path : activePath } ) ) ;
59- dispatch ( getDescribe ( { path : activePath } ) ) ;
6058 dispatch ( getSchemaAcl ( { path : activePath } ) ) ;
6159 } ;
6260
You can’t perform that action at this time.
0 commit comments