1
0
Fork 0
mirror of synced 2024-07-11 17:26:01 +12:00

Prevent editing relationship columns

This commit is contained in:
Andrew Kingston 2020-10-15 11:55:06 +01:00
parent 48a26348a2
commit 98d066ac33

View file

@ -68,7 +68,7 @@
field: key,
hide: shouldHideField(key),
sortable: true,
editable: canEdit,
editable: canEdit && schema[key].type !== "link",
cellRenderer: getRenderer(schema[key], canEdit),
autoHeight: true,
}