From 01d12526f1dc29798cde56298bc2f729d6b68ee7 Mon Sep 17 00:00:00 2001 From: mufazalov Date: Wed, 30 Oct 2024 16:55:14 +0300 Subject: [PATCH] fix(VDiskInfo): fix title layout --- src/components/VDiskInfo/VDiskInfo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/VDiskInfo/VDiskInfo.tsx b/src/components/VDiskInfo/VDiskInfo.tsx index 851cda3cb0..d65063ac89 100644 --- a/src/components/VDiskInfo/VDiskInfo.tsx +++ b/src/components/VDiskInfo/VDiskInfo.tsx @@ -10,7 +10,6 @@ import {getSeverityColor} from '../../utils/disks/helpers'; import type {PreparedVDisk} from '../../utils/disks/types'; import {useTypedSelector} from '../../utils/hooks'; import {bytesToSpeed} from '../../utils/utils'; -import {EntityStatus} from '../EntityStatus/EntityStatus'; import {InfoViewer} from '../InfoViewer'; import type {InfoViewerProps} from '../InfoViewer/InfoViewer'; import {LinkWithIcon} from '../LinkWithIcon/LinkWithIcon'; @@ -202,7 +201,8 @@ function VDiskTitle({data}: VDiskTitleProps) { return (
{vDiskInfoKeyset('vdiks-title')} - + + {data.StringifiedId}
); }