Merge pull request #10710 from aliriocastro/add-silent-m

fix: pass silent as an arg to frappe.call to avoid dialog if errors
This commit is contained in:
mergify[bot] 2020-06-25 04:03:24 +00:00 committed by GitHub
commit b8693495ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -101,6 +101,7 @@ frappe.call = function(opts) {
error_handlers: opts.error_handlers || {},
// show_spinner: !opts.no_spinner,
async: opts.async,
silent: opts.silent,
url,
});
}