fix: Fix column in volume backup

Show volumes id & name in volume backup

Change-Id: I655e6345bc52c5a07ffe9ebc86b061eb0e6ddf89
This commit is contained in:
xusongfu 2021-08-18 16:13:12 +08:00 committed by Jingwei.Zhang
parent f15ea203a2
commit dcbfa1b2f2

View File

@ -131,6 +131,12 @@ export const volumeColumns = [
{
title: t('ID/Name'),
dataIndex: 'name',
render: (value, record) => (
<>
<p style={{ marginBottom: 0 }}>{record.id}</p>
<span>{value || '-'}</span>
</>
),
},
{
title: t('Type'),