From 66425c6e7fc161e54097b5d7aa91e3fdac6f7076 Mon Sep 17 00:00:00 2001 From: Prateeksha Singh Date: Wed, 30 May 2018 17:26:03 +0530 Subject: [PATCH] [fix] help page issue listing --- erpnext/templates/pages/help.html | 2 +- erpnext/templates/pages/help.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/templates/pages/help.html b/erpnext/templates/pages/help.html index f7568d55b0..a49268ac0a 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 754a09c30c..c484d25d81 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)