ydb-embedded-ui 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ### [1.1.2](https://www.github.com/ydb-platform/ydb-embedded-ui/compare/v1.1.1...v1.1.2) (2022-04-19)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **ObjectSummary:** should correctly parse table creation time ([c9887dd](https://www.github.com/ydb-platform/ydb-embedded-ui/commit/c9887dd162720667dcbe3b4834b3b0ba5a9f3f6e))
9
+
3
10
  ### [1.1.1](https://www.github.com/ydb-platform/ydb-embedded-ui/compare/v1.1.0...v1.1.1) (2022-04-19)
4
11
 
5
12
 
@@ -153,7 +153,7 @@ function ObjectSummary(props: ObjectSummaryProps) {
153
153
  };
154
154
 
155
155
  const renderObjectOverview = () => {
156
- const startTimeInMilliseconds = currentSchemaData?.CreateStep / 1000;
156
+ const startTimeInMilliseconds = Number(currentSchemaData?.CreateStep);
157
157
  let createTime = '';
158
158
  if (startTimeInMilliseconds) {
159
159
  createTime = new Date(startTimeInMilliseconds).toUTCString();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ydb-embedded-ui",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "files": [
5
5
  "dist"
6
6
  ],