Skip to content

Commit c9887dd

Browse files
committed
fix(ObjectSummary): should correctly parse table creation time
1 parent 5ac1a90 commit c9887dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/containers/Tenant/ObjectSummary/ObjectSummary.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ function ObjectSummary(props: ObjectSummaryProps) {
153153
};
154154

155155
const renderObjectOverview = () => {
156-
const startTimeInMilliseconds = currentSchemaData?.CreateStep / 1000;
156+
const startTimeInMilliseconds = Number(currentSchemaData?.CreateStep);
157157
let createTime = '';
158158
if (startTimeInMilliseconds) {
159159
createTime = new Date(startTimeInMilliseconds).toUTCString();

0 commit comments

Comments
 (0)