Skip to content

Commit

Permalink
fix: change back backing image name index to backingImageName
Browse files Browse the repository at this point in the history
Signed-off-by: andy.lee <[email protected]>
  • Loading branch information
a110605 committed Dec 24, 2024
1 parent 21c4758 commit c18caaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes/backingImage/BackupBackingImageList.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ function BackupBackingImageList({ loading, dataSource, deleteBackupBackingImage,
const columns = [
{
title: 'Name',
dataIndex: 'name',
key: 'name',
dataIndex: 'backingImageName',
key: 'backingImageName',
width: 120,
sorter: (a, b) => a.name.localeCompare(b.name),
sorter: (a, b) => a.backingImageName.localeCompare(b.backingImageName),
render: (text, record) => {
const isEncrypted = Boolean(record.secret || record.secretNamespace)
return (
Expand Down

0 comments on commit c18caaa

Please sign in to comment.