We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently there is no way to change the locale with the dev-harness. Seems like everything is in place for it, but there's no UI yet.
/* AppHeader/index.tsx */ import React, { ChangeEvent } from 'react'; import { Box, MenuItem, TextField } from '@alteryx/ui'; /* ... */ const AppHeader = (props: IAppHeaderProps): JSX.Element => { /* ... */ const handleChangeLocale = (event: ChangeEvent<HTMLInputElement>): void => { handleSetLocale(event.target.value); }; return ( /* ... */ <Grid item> <FormControlLabel control={( <TextField onChange={handleChangeLocale} select SelectProps={{ autoWidth: false }} value={locale} > {localeOptions.map(option => ( <MenuItem key={option.value} value={option.value}> {option.primary} </MenuItem> ))} </TextField> )} label={<Box mr={2}>Locale</Box>} labelPlacement="start" /> </Grid> /* ... */ ); };
The text was updated successfully, but these errors were encountered:
The locale it is also missing.
it
Sorry, something went wrong.
No branches or pull requests
Currently there is no way to change the locale with the dev-harness. Seems like everything is in place for it, but there's no UI yet.
The text was updated successfully, but these errors were encountered: