diff --git a/frappe/printing/page/print/print.js b/frappe/printing/page/print/print.js index e20859348a..a3b8fba88b 100644 --- a/frappe/printing/page/print/print.js +++ b/frappe/printing/page/print/print.js @@ -88,14 +88,16 @@ frappe.ui.form.PrintView = class { icon: "refresh", }); - this.page.add_action_icon( - "es-line-filetype", - () => { - this.go_to_form_view(); - }, - "", - __("Form") - ); + if (frappe.is_mobile()) { + this.page.add_button(__("Form"), () => this.go_to_form_view(), { icon: "small-file" }); + } else { + this.page.add_action_icon( + "es-line-filetype", + () => this.go_to_form_view(), + "", + __("Form") + ); + } } setup_sidebar() {