Skip to content

Commit

Permalink
Make aws table acronyms uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
arbulu89 committed Jun 10, 2022
1 parent f6b0a7b commit 6285f8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/components/HostDetails/AwsDetails.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ const AwsDetails = ({ provider, provider_data }) => {
title: 'Account ID',
content: provider_data?.account_id,
},
{ title: 'Ami ID', content: provider_data?.ami_id },
{ title: 'AMI ID', content: provider_data?.ami_id },
{
title: 'Region',
content: `${provider_data?.region} (${provider_data?.availability_zone})`,
},
{ title: 'Vpc ID', content: provider_data?.vpc_id },
{ title: 'VPC ID', content: provider_data?.vpc_id },
]}
/>
</div>
Expand Down

0 comments on commit 6285f8c

Please sign in to comment.