Skip to content

Commit

Permalink
Fix volume region in the UI
Browse files Browse the repository at this point in the history
  • Loading branch information
r4victor committed Oct 9, 2024
1 parent f6a30bd commit 8a2b9d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/pages/Volumes/AdministrationList/hooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const useColumnsDefinitions = () => {
{
id: 'region',
header: `${t('volume.region')}`,
cell: (item: IVolume) => item.configuration?.backend ?? '-',
cell: (item: IVolume) => item.configuration?.region ?? '-',
},

{
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Volumes/List/hooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const useColumnsDefinitions = () => {
{
id: 'region',
header: `${t('volume.region')}`,
cell: (item: IVolume) => item.configuration?.backend ?? '-',
cell: (item: IVolume) => item.configuration?.region ?? '-',
},

{
Expand Down

0 comments on commit 8a2b9d1

Please sign in to comment.