We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76eb8b1 commit 95e6d31Copy full SHA for 95e6d31
1 file changed
frontend/src/components/pages/topics/quick-info.tsx
@@ -140,9 +140,7 @@ export const TopicQuickInfoStatistic = (p: { topic: Topic }) => {
140
<Text as="dd">
141
{retentionBytes.value !== '-1' && '~'}
142
{formatConfigValue(retentionBytes.name, retentionBytes.value, 'friendly')}
143
- {Number.isFinite(Number(retentionBytes.value)) &&
144
- Number(retentionBytes.value) !== -1 &&
145
- ' / partition'}
+ {Number.isFinite(Number(retentionBytes.value)) && Number(retentionBytes.value) !== -1 && ' / partition'}
146
</Text>
147
</Flex>
148
</>
0 commit comments