fix: Fix column in volume backup
Show volumes id & name in volume backup Change-Id: I655e6345bc52c5a07ffe9ebc86b061eb0e6ddf89
This commit is contained in:
parent
f15ea203a2
commit
dcbfa1b2f2
@ -131,6 +131,12 @@ export const volumeColumns = [
|
|||||||
{
|
{
|
||||||
title: t('ID/Name'),
|
title: t('ID/Name'),
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
|
render: (value, record) => (
|
||||||
|
<>
|
||||||
|
<p style={{ marginBottom: 0 }}>{record.id}</p>
|
||||||
|
<span>{value || '-'}</span>
|
||||||
|
</>
|
||||||
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: t('Type'),
|
title: t('Type'),
|
||||||
|
Loading…
Reference in New Issue
Block a user