Skip to content

Commit bb6d7be

Browse files
fix(Storage): fix encryption label shrink (#1851)
1 parent b89d084 commit bb6d7be

File tree

1 file changed

+2
-4
lines changed
  • src/containers/Storage/StorageGroups/columns

1 file changed

+2
-4
lines changed

src/containers/Storage/StorageGroups/columns/columns.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import React from 'react';
2-
31
import {ShieldKeyhole} from '@gravity-ui/icons';
42
import DataTable from '@gravity-ui/react-data-table';
53
import {Icon, Label, Popover, PopoverBehavior} from '@gravity-ui/uikit';
@@ -60,7 +58,7 @@ const typeColumn: StorageGroupsColumn = {
6058
resizeMinWidth: 100,
6159
align: DataTable.LEFT,
6260
render: ({row}) => (
63-
<React.Fragment>
61+
<div>
6462
<Label>{row.MediaType || '—'}</Label>
6563
{'\u00a0'}
6664
{row.Encryption && (
@@ -74,7 +72,7 @@ const typeColumn: StorageGroupsColumn = {
7472
</Label>
7573
</Popover>
7674
)}
77-
</React.Fragment>
75+
</div>
7876
),
7977
sortable: false,
8078
};

0 commit comments

Comments
 (0)