Merge pull request #36657 from GursheenK/enter-blur-event-for-quick-entry

fix: unsaved value in quick entry dialog due to missing blur event
This commit is contained in:
Suraj Shetty 2026-02-04 11:54:14 +05:30 committed by GitHub
commit cd5990bd78
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -81,7 +81,7 @@ frappe.ui.FieldGroup = class FieldGroup extends frappe.ui.form.Layout {
if (e.which == 13) {
if (me.has_primary_action) {
e.preventDefault();
me.get_primary_btn().trigger("click");
frappe.app.trigger_primary_action();
}
}
});