Skip to content

Commit 231df34

Browse files
fix(Storage): fix encryption label shrink
1 parent 5c722dd commit 231df34

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const typeColumn: StorageGroupsColumn = {
6060
resizeMinWidth: 100,
6161
align: DataTable.LEFT,
6262
render: ({row}) => (
63-
<React.Fragment>
63+
<div>
6464
<Label>{row.MediaType || '—'}</Label>
6565
{'\u00a0'}
6666
{row.Encryption && (
@@ -74,7 +74,7 @@ const typeColumn: StorageGroupsColumn = {
7474
</Label>
7575
</Popover>
7676
)}
77-
</React.Fragment>
77+
</div>
7878
),
7979
sortable: false,
8080
};

0 commit comments

Comments
 (0)