Skip to content

Commit 431f77f

Browse files
committed
fix(Storage): wording fixed [YDB-1552]
1 parent 31264cf commit 431f77f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/containers/Storage/StorageGroups/StorageGroups.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ function StorageGroups({data, tableSettings, visibleEntities, nodes}: StorageGro
214214

215215
if (visibleEntities === VisibleEntities.Space) {
216216
columns = allColumns.filter((col) => col.name !== TableColumnsIds.Missing);
217-
emptyMessage = 'No storage groups with space problems.';
217+
emptyMessage = 'No groups with out of space errors.';
218218
}
219219

220220
if (visibleEntities === VisibleEntities.Missing) {

src/containers/Storage/StorageNodes/StorageNodes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ function StorageNodes({data, tableSettings, visibleEntities}: StorageGroupsProps
118118

119119
if (visibleEntities === VisibleEntities.Space) {
120120
columns = allColumns.filter((col) => col.name !== TableColumnsIds.Missing);
121-
emptyMessage = 'No nodes with space problems.';
121+
emptyMessage = 'No nodes with out of space errors.';
122122
}
123123
if (visibleEntities === VisibleEntities.Missing) {
124124
emptyMessage = 'No degraded nodes.';

src/store/reducers/storage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {calcUptime} from '../../utils';
77
export const VisibleEntities = {
88
All: 'All',
99
Missing: 'Degraded',
10-
Space: 'Out of space',
10+
Space: 'Out of Space ',
1111
};
1212

1313
export const StorageTypes = {

0 commit comments

Comments
 (0)