ydb-embedded-ui 1.12.1 → 1.12.2

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.12.2](https://github.com/ydb-platform/ydb-embedded-ui/compare/v1.12.1...v1.12.2) (2022-08-29)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **Storage:** bright red usage starting from 90% ([69b7ed2](https://github.com/ydb-platform/ydb-embedded-ui/commit/69b7ed248151f518ffc5fabbdccf5ea9bbcd9405))
9
+ * **Storage:** display usage without gte sign ([39630a2](https://github.com/ydb-platform/ydb-embedded-ui/commit/39630a2a06b574d53d0ef74c1b3e0dc96b9666a8))
10
+
3
11
  ## [1.12.1](https://github.com/ydb-platform/ydb-embedded-ui/compare/v1.12.0...v1.12.1) (2022-08-26)
4
12
 
5
13
 
@@ -131,9 +131,9 @@ function StorageGroups({data, tableSettings, visibleEntities, nodes}: StorageGro
131
131
  return row.Limit ? (
132
132
  <Label
133
133
  theme={getUsageSeverity(usage)}
134
- className={b('usage-label', {overload: usage >= 100})}
134
+ className={b('usage-label', {overload: usage >= 90})}
135
135
  >
136
- {usage}%
136
+ {usage}%
137
137
  </Label>
138
138
  ) : '-';
139
139
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ydb-embedded-ui",
3
- "version": "1.12.1",
3
+ "version": "1.12.2",
4
4
  "files": [
5
5
  "dist"
6
6
  ],