fixed table height selector

This commit is contained in:
shams mosowi
2019-10-04 23:08:42 +10:00
parent 82a3a78af6
commit ce40e0d1be

View File

@@ -47,7 +47,7 @@ const TableHeader = (props: any) => {
<FormControl variant="outlined" className={classes.formControl}>
<InputLabel htmlFor="outlined-age-simple">Row Height</InputLabel>
<Select
value={rowHeight}
value={rowHeight ? rowHeight : 35}
onChange={(event: any, child: any) => {
updateConfig("rowHeight", event.target.value);
}}