Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ const DUMetadata: React.FC<MetadataProps> = ({
if (objectInfo?.quotaInNamespace !== undefined && objectInfo?.quotaInNamespace !== -1) {
data.push({
key: 'Quota In Namespace',
value: byteToSize(objectInfo.quotaInNamespace, 3)
value: objectInfo.quotaInNamespace
});
}

Expand Down Expand Up @@ -380,4 +380,4 @@ const DUMetadata: React.FC<MetadataProps> = ({
);
}

export default DUMetadata;
export default DUMetadata;
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ export class DiskUsage extends React.Component<Record<string, object>, IDUState>

if (summaryResponse.objectInfo?.quotaInNamespace !== undefined && summaryResponse.objectInfo?.quotaInNamespace !== -1) {
keys.push('Quota In Namespace');
values.push(byteToSize(summaryResponse.objectInfo.quotaInNamespace, 3));
values.push(summaryResponse.objectInfo.quotaInNamespace);
}

if (summaryResponse.objectInfo?.replicationConfig?.replicationFactor !== undefined && summaryResponse.objectInfo?.replicationConfig?.replicationFactor !== -1) {
Expand Down