mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-08 01:15:49 +02:00
* fix: add try catch to copy * fix: show constraints on default strategy * fix: require name to submit context field * fix: require name and project id to be set in order to create a project * fix: change documentation icon * fix: only validate unique names on create * Update src/component/context/form-context-component.jsx Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai> Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai>
12 lines
232 B
JavaScript
12 lines
232 B
JavaScript
import { makeStyles } from '@material-ui/styles';
|
|
|
|
export const useStyles = makeStyles({
|
|
listItem: {
|
|
padding: 0,
|
|
['& a']: {
|
|
textDecoration: 'none',
|
|
color: 'inherit',
|
|
},
|
|
},
|
|
});
|