- {vDisks?.map((vDisk) => (
+ {vDisks?.map((vDisk, index) => (
))}
@@ -70,6 +74,7 @@ interface DisksItemProps {
highlightedVDisk: string | undefined;
setHighlightedVDisk: (id: string | undefined) => void;
unavailableVDiskWidth?: number;
+ withDCMargin?: boolean;
}
function VDiskItem({
@@ -78,6 +83,7 @@ function VDiskItem({
inactive,
setHighlightedVDisk,
unavailableVDiskWidth,
+ withDCMargin,
}: DisksItemProps) {
// Do not show PDisk popup for VDisk
const vDiskToShow = {...vDisk, PDisk: undefined};
@@ -89,7 +95,10 @@ function VDiskItem({
const flexGrow = Number(vDiskToShow.AllocatedSize) || 1;
return (
-