Skip to content

Commit

Permalink
added ids on initial page
Browse files Browse the repository at this point in the history
  • Loading branch information
Nebyt committed May 9, 2024
1 parent 7b78339 commit 07497cc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class LanguageSelectionForm extends Component<Props & InjectedLayoutProps, State
shrink={false}
>
{languageOptions.map(option => (
<MenuItem key={option.value} value={option.value}>
<MenuItem key={option.value} value={option.value} id={'selectLanguage-' + option.value + '-menuItem'}>
<FlagLabel svg={option.svg} label={option.label} />
</MenuItem>
))}
Expand All @@ -237,6 +237,7 @@ class LanguageSelectionForm extends Component<Props & InjectedLayoutProps, State
onChange={event => {
tosAgreement.value = event.target.checked;
}}
id='initialPage-tosAgreement-checkbox'
/>
}
sx={{
Expand Down Expand Up @@ -265,6 +266,7 @@ class LanguageSelectionForm extends Component<Props & InjectedLayoutProps, State
padding: '13px 24px',
},
}}
id='initialPage-continue-button'
>
{intl.formatMessage(globalMessages.continue)}
</LoadingButton>
Expand Down

0 comments on commit 07497cc

Please sign in to comment.