ydb-embedded-ui 1.10.0 → 1.10.1
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.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];
|