Merge pull request #10101 from frappe/revert-9721-editable-grid-fix-develop

This commit is contained in:
Suraj Shetty 2020-04-26 20:52:56 +05:30 committed by GitHub
commit 280b68707a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,9 +22,6 @@ export default class GridRow {
if(me.grid.allow_on_grid_editing() && me.grid.is_editable()) {
// pass
} else {
if (!me.grid.is_editable()) {
me.docfields.map(df => df.read_only = 1);
}
me.toggle_view();
return false;
}