ydb-embedded-ui 1.6.0 → 1.6.1

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.6.1](https://github.com/ydb-platform/ydb-embedded-ui/compare/v1.6.0...v1.6.1) (2022-06-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * should show Pending instead of Pendin ([0b93f80](https://github.com/ydb-platform/ydb-embedded-ui/commit/0b93f8000dffca27cd26321eb86f41e4f458faa6))
9
+ * should show query error even if no issues ([708bac5](https://github.com/ydb-platform/ydb-embedded-ui/commit/708bac56c2e671ec23e23c5055d0c0a9d419cd86))
10
+
3
11
  ## [1.6.0](https://github.com/ydb-platform/ydb-embedded-ui/compare/v1.5.3...v1.6.0) (2022-06-06)
4
12
 
5
13
 
@@ -111,7 +111,7 @@ function QueryResult(props) {
111
111
  </Fullscreen>
112
112
  )}
113
113
  </React.Fragment>
114
- ) : null;
114
+ ) : <span>{error?.data ?? error}</span>;
115
115
  };
116
116
 
117
117
  return (
@@ -201,7 +201,7 @@ class Tenants extends React.Component {
201
201
  },
202
202
  {
203
203
  name: 'State',
204
- width: 80,
204
+ width: 90,
205
205
  render: ({value}) => (value ? value.toLowerCase() : '—'),
206
206
  customStyle: () => ({textTransform: 'capitalize'}),
207
207
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ydb-embedded-ui",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "files": [
5
5
  "dist"
6
6
  ],