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 2ebbecb commit 85191b0Copy full SHA for 85191b0
src/components/VDiskInfo/VDiskInfo.tsx
@@ -211,17 +211,20 @@ export function VDiskInfo<T extends PreparedVDisk>({
211
});
212
213
return (
214
- <React.Fragment key={index}>
215
- {index > 0 && ', '}
216
- <InternalLink to={vDiskPath}>{donor.StringifiedId}</InternalLink>
217
- </React.Fragment>
+ <InternalLink key={index} to={vDiskPath}>
+ {donor.StringifiedId}
+ </InternalLink>
218
);
219
}).filter(Boolean);
220
221
if (donorLinks.length > 0) {
222
rightColumn.push({
223
label: vDiskInfoKeyset('donors'),
224
- value: <>{donorLinks}</>,
+ value: (
+ <Flex direction="column" gap={1}>
225
+ {donorLinks}
226
+ </Flex>
227
+ ),
228
229
}
230
0 commit comments