fix(grid): Hide backdrop when deleting row in modal

This commit is contained in:
Corentin Forler 2024-07-22 17:36:18 +02:00
parent 07760e359a
commit 036bdf0445
No known key found for this signature in database

View file

@ -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([
() => {