ydb-embedded-ui 1.10.0 → 1.10.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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.10.1](https://github.com/ydb-platform/ydb-embedded-ui/compare/v1.10.0...v1.10.1) (2022-08-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **Tenant:** fix actions set for topics ([0c75bf4](https://github.com/ydb-platform/ydb-embedded-ui/commit/0c75bf4561966dd663ab1cd7c7b81ef6b4632e50))
9
+
3
10
  ## [1.10.0](https://github.com/ydb-platform/ydb-embedded-ui/compare/v1.9.0...v1.10.0) (2022-08-10)
4
11
 
5
12
 
@@ -114,11 +114,14 @@ export const getActions = (
114
114
  const nodeTypeToActions: Record<NavigationTreeNodeType, ActionsSet> = {
115
115
  database: DIR_SET,
116
116
  directory: DIR_SET,
117
+
117
118
  table: TABLE_SET,
118
119
  column_table: TABLE_SET,
120
+
119
121
  index_table: JUST_COPY,
122
+ topic: JUST_COPY,
123
+
120
124
  index: EMPTY_SET,
121
- topic: DIR_SET,
122
125
  };
123
126
 
124
127
  return nodeTypeToActions[type];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ydb-embedded-ui",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "files": [
5
5
  "dist"
6
6
  ],