diff --git a/erpnext/templates/pages/help.html b/erpnext/templates/pages/help.html index f7568d55b01..a49268ac0ad 100644 --- a/erpnext/templates/pages/help.html +++ b/erpnext/templates/pages/help.html @@ -55,7 +55,7 @@

{{ _("See all open tickets") }}

- + {{ _("Open a new ticket") }} diff --git a/erpnext/templates/pages/help.py b/erpnext/templates/pages/help.py index 754a09c30ce..c484d25d817 100644 --- a/erpnext/templates/pages/help.py +++ b/erpnext/templates/pages/help.py @@ -19,7 +19,7 @@ def get_context(context): context.topics = topics_data[:3] # Issues - context.issues = frappe.get_list("Issue")[:3] + context.issues = frappe.get_list("Issue", fields=["name", "status", "subject", "modified"])[:3] def get_forum_posts(s): response = requests.get(s.forum_url + '/' + s.get_latest_query)