ydb-embedded-ui 1.4.0 → 1.4.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,17 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### [1.4.1](https://github.com/ydb-platform/ydb-embedded-ui/compare/v1.4.0...v1.4.1) (2022-05-17)
|
4
|
+
|
5
|
+
|
6
|
+
### UI Updates
|
7
|
+
|
8
|
+
* **Tenant:** add tenant name wrapper ([8176d28](https://github.com/ydb-platform/ydb-embedded-ui/commit/8176d28a5769b2b95d667ed960ad34d7a0d9bb4c))
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* **NodesTable:** align external link icon ([a379796](https://github.com/ydb-platform/ydb-embedded-ui/commit/a379796c6b8087f25f95ce3db4be33f18da71e04))
|
14
|
+
|
3
15
|
## [1.4.0](https://github.com/ydb-platform/ydb-embedded-ui/compare/v1.3.0...v1.4.0) (2022-05-16)
|
4
16
|
|
5
17
|
|
@@ -144,7 +144,7 @@ class Tenants extends React.Component {
|
|
144
144
|
: undefined;
|
145
145
|
const isExternalLink = Boolean(backend);
|
146
146
|
return (
|
147
|
-
<
|
147
|
+
<div className={b('name-wrapper')}>
|
148
148
|
<EntityStatus
|
149
149
|
externalLink={isExternalLink}
|
150
150
|
className={b('name')}
|
@@ -159,7 +159,7 @@ class Tenants extends React.Component {
|
|
159
159
|
})}
|
160
160
|
/>
|
161
161
|
{additionalTenantsInfo.name && additionalTenantsInfo.name(value, row)}
|
162
|
-
</
|
162
|
+
</div>
|
163
163
|
);
|
164
164
|
},
|
165
165
|
width: 440,
|