perf: Reduce debounce delay
This commit is contained in:
parent
32148cadc5
commit
ff552d5d1d
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ export default class Grid {
|
|||
|
||||
this.is_grid = true;
|
||||
this.debounced_refresh = this.refresh.bind(this);
|
||||
this.debounced_refresh = frappe.utils.debounce(this.debounced_refresh, 500);
|
||||
this.debounced_refresh = frappe.utils.debounce(this.debounced_refresh, 100);
|
||||
}
|
||||
|
||||
allow_on_grid_editing() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue