We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31dcf49 commit b36c942Copy full SHA for b36c942
src/pages/Systems/StorageSection.tsx
@@ -156,11 +156,11 @@ const makeOverallStorageSectionProps = (record: IngestorQueryRecord | null) => {
156
const activeCompressionRate = calcCompressionRate(storageSize, ingestedSize);
157
158
return {
159
- storageSize,
160
- lifetimeIngestedSize,
161
- lifetimeStorageSize,
162
- deletedStorageSize,
163
- ingestedSize,
+ storageSize: formatBytes(storageSize),
+ lifetimeIngestedSize: formatBytes(lifetimeIngestedSize),
+ lifetimeStorageSize: formatBytes(lifetimeStorageSize),
+ deletedStorageSize: formatBytes(deletedStorageSize),
+ ingestedSize: formatBytes(ingestedSize),
164
lifetimeCompressionRate,
165
activeCompressionRate,
166
};
0 commit comments