We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ac1a90 commit c9887ddCopy full SHA for c9887dd
src/containers/Tenant/ObjectSummary/ObjectSummary.tsx
@@ -153,7 +153,7 @@ function ObjectSummary(props: ObjectSummaryProps) {
153
};
154
155
const renderObjectOverview = () => {
156
- const startTimeInMilliseconds = currentSchemaData?.CreateStep / 1000;
+ const startTimeInMilliseconds = Number(currentSchemaData?.CreateStep);
157
let createTime = '';
158
if (startTimeInMilliseconds) {
159
createTime = new Date(startTimeInMilliseconds).toUTCString();
0 commit comments