fix(grid): Hide backdrop when deleting row in modal
This commit is contained in:
parent
07760e359a
commit
036bdf0445
1 changed files with 3 additions and 4 deletions
|
|
@ -95,11 +95,10 @@ export default class GridRow {
|
|||
remove() {
|
||||
var me = this;
|
||||
if (this.grid.is_editable()) {
|
||||
if (this.get_open_form()) {
|
||||
this.hide_form();
|
||||
}
|
||||
if (this.frm) {
|
||||
if (this.get_open_form()) {
|
||||
this.hide_form();
|
||||
}
|
||||
|
||||
frappe
|
||||
.run_serially([
|
||||
() => {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue