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 a088615
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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
4 changes: 2 additions & 2 deletions test/e2e/cypress/integration/host_details.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,11 @@ context('Host Details', () => {
.next()
.should('contain', selectedHost.awsCloudDetails.dataDiskNumber);
cy.get('div')
.contains('Ami ID')
.contains('AMI ID')
.next()
.should('contain', selectedHost.awsCloudDetails.amiId);
cy.get('div')
.contains('Vpc ID')
.contains('VPC ID')
.next()
.should('contain', selectedHost.awsCloudDetails.vpcId);
});
Expand Down

0 comments on commit a088615

Please sign in to comment.