Skip to content

Commit

Permalink
removed spacing between icons
Browse files Browse the repository at this point in the history
  • Loading branch information
alicendeh committed Apr 7, 2022
1 parent 03dcbd5 commit 38e0e20
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const styles = theme => ({
height: '3.5em',
width: '100%',
flexDirection: 'row',
justifyContent: 'space-around',
justifyContent: 'flex-start',
},
},
actionBoxButtonStyle: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ const buildMaterialUsedNodes = ({ props, refs, classes, common_classes }) => {
* @todo - describe function's signature
*/
function CreateProject(props) {
console.log(props.values.category);
const [category, setCategory] = React.useState([]);

const classes = useStyles();
const common_classes = useCommonStyles();

Expand Down Expand Up @@ -660,9 +663,11 @@ function CreateProject(props) {
labelId="category"
id="category"
name="category"
multiple={true}
className={classes.customInputStyle}
value={
props.values.category ? props.values.category : ''
[...category]
// props.values.category ? props.values.category : ''
}
onChange={props.handleChange}
onBlur={props.handleBlur}
Expand Down

0 comments on commit 38e0e20

Please sign in to comment.