1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00

fix editable header column not hiding when grid is un-editable

This commit is contained in:
kevmodrome 2020-10-12 20:44:40 +02:00
parent 41e23e78ce
commit 9923266c51

View file

@ -43,8 +43,8 @@
data = await fetchData(datasource)
columnDefs = Object.keys(schema).map((key, i) => {
return {
headerCheckboxSelection: i === 0,
checkboxSelection: i === 0,
headerCheckboxSelection: i === 0 && editable,
checkboxSelection: i === 0 && editable,
valueSetter: setters.get(schema[key].type),
headerName: key.charAt(0).toUpperCase() + key.slice(1),
field: key,