Merge "fix: Fix column in volume backup"

This commit is contained in:
Zuul 2021-09-09 02:12:47 +00:00 committed by Gerrit Code Review
commit 543d3fbfd5

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'),