fix: scope print shortcut to form page (#35811)

This commit is contained in:
Match 2026-01-12 21:40:05 -08:00 committed by GitHub
parent 238bcf1670
commit 1c7520e820
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -168,6 +168,7 @@ frappe.ui.form.Form = class FrappeForm {
frappe.ui.keys.add_shortcut({
shortcut: "ctrl+p",
action: () => this.print_doc(),
page: this.page,
description: __("Print document"),
condition: () => frappe.model.can_print(this.doctype, this) && !this.meta.issingle,
});