Skip to content

Commit

Permalink
fix(ObjectSummary): should correctly parse table creation time
Browse files Browse the repository at this point in the history
  • Loading branch information
Raubzeug committed Apr 19, 2022
1 parent 5ac1a90 commit c9887dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/Tenant/ObjectSummary/ObjectSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ function ObjectSummary(props: ObjectSummaryProps) {
};

const renderObjectOverview = () => {
const startTimeInMilliseconds = currentSchemaData?.CreateStep / 1000;
const startTimeInMilliseconds = Number(currentSchemaData?.CreateStep);
let createTime = '';
if (startTimeInMilliseconds) {
createTime = new Date(startTimeInMilliseconds).toUTCString();
Expand Down

0 comments on commit c9887dd

Please sign in to comment.