We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0db58d commit e6fea58Copy full SHA for e6fea58
src/containers/Storage/Storage.js
@@ -211,6 +211,7 @@ class Storage extends React.Component {
211
storageType,
212
groupsCount,
213
nodesCount,
214
+ flatListStorageEntities,
215
loading,
216
wasLoaded,
217
} = this.props;
@@ -223,10 +224,10 @@ class Storage extends React.Component {
223
224
return label;
225
}
226
- if (count.total === count.found) {
227
+ if (count.total === flatListStorageEntities.length) {
228
label += count.total;
229
} else {
- label += `${count.found} of ${count.total}`;
230
+ label += `${flatListStorageEntities.length} of ${count.total}`;
231
232
233
0 commit comments