ydb-embedded-ui 1.2.0 → 1.2.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.2.1](https://www.github.com/ydb-platform/ydb-embedded-ui/compare/v1.2.0...v1.2.1) (2022-04-27)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* **Vdisk:** should not fail if no node id passed ([d66686d](https://www.github.com/ydb-platform/ydb-embedded-ui/commit/d66686d0cbd9f61c4e106f6775db2fca226c922f))
|
9
|
+
|
3
10
|
## [1.2.0](https://www.github.com/ydb-platform/ydb-embedded-ui/compare/v1.1.3...v1.2.0) (2022-04-26)
|
4
11
|
|
5
12
|
|
@@ -235,11 +235,18 @@ function Vdisk(props) {
|
|
235
235
|
<DiskStateProgressBar
|
236
236
|
diskAllocatedPercent={vdiskAllocatedPercent}
|
237
237
|
severity={severity}
|
238
|
-
href={
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
238
|
+
href={
|
239
|
+
props.NodeId
|
240
|
+
? createHref(
|
241
|
+
routes.node,
|
242
|
+
{id: props.NodeId, activeTab: STRUCTURE},
|
243
|
+
{
|
244
|
+
pdiskId: props.PDisk?.PDiskId,
|
245
|
+
vdiskId: stringifyVdiskId(props.VDiskId),
|
246
|
+
},
|
247
|
+
)
|
248
|
+
: undefined
|
249
|
+
}
|
243
250
|
/>
|
244
251
|
</div>
|
245
252
|
</React.Fragment>
|