Reorder the target envs

Update the order of envs based on new changes in master
This commit is contained in:
Karel Hala 2021-06-08 15:52:06 +02:00 committed by Sanne Raymaekers
parent 47f626e94f
commit dbcd753bb9
6 changed files with 28 additions and 27 deletions

View file

@ -40,6 +40,24 @@ const TargetEnvironment = ({ label, isRequired, ...props }) => {
isSelected={ environemt.aws }
isStacked
isDisplayLarge />
<Tile
className="tile"
data-testid="upload-google"
title="Google Cloud Platform"
icon={ <img
className='provider-icon'
src={ '/apps/frontend-assets/partners-icons/google-cloud-short.svg' } /> }
onClick={ () => setEnvironment((prevEnv) => {
const newEnv = ({
...prevEnv,
google: !prevEnv.google
});
change(input.name, newEnv);
return newEnv;
}) }
isSelected={ environemt.google }
isStacked
isDisplayLarge />
<Tile
className="tile pf-u-mr-sm"
data-testid="upload-azure"
@ -59,24 +77,6 @@ const TargetEnvironment = ({ label, isRequired, ...props }) => {
isSelected={ environemt.azure }
isStacked
isDisplayLarge />
<Tile
className="tile"
data-testid="upload-google"
title="Google Cloud Platform"
icon={ <img
className='provider-icon'
src={ '/apps/frontend-assets/partners-icons/google-cloud-short.svg' } /> }
onClick={ () => setEnvironment((prevEnv) => {
const newEnv = ({
...prevEnv,
google: !prevEnv.google
});
change(input.name, newEnv);
return newEnv;
}) }
isSelected={ environemt.google }
isStacked
isDisplayLarge />
</div>
</FormGroup>;
};