File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/containers/Tenant/ObjectSummary Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ function ObjectSummary(props: ObjectSummaryProps) {
104104
105105 const { name : tenantName , info : infoTab } = queryParams ;
106106 const tenantData = _ . get ( data [ tenantName as string ] , 'PathDescription.Self' ) ;
107+ const currentSchemaData = _ . get ( data [ currentSchemaPath ] , 'PathDescription.Self' ) ;
107108
108109 const tableSchema =
109110 currentItem ?. PathDescription ?. Table || currentItem ?. PathDescription ?. OlapTableDescription ;
@@ -152,7 +153,7 @@ function ObjectSummary(props: ObjectSummaryProps) {
152153 } ;
153154
154155 const renderObjectOverview = ( ) => {
155- const startTimeInMilliseconds = tenantData ?. CreateStep / 1000 ;
156+ const startTimeInMilliseconds = currentSchemaData ?. CreateStep / 1000 ;
156157 let createTime = 'Unknown' ;
157158 if ( startTimeInMilliseconds ) {
158159 createTime = new Date ( startTimeInMilliseconds ) . toUTCString ( ) ;
You can’t perform that action at this time.
0 commit comments