[minor] always show issues in sidebar
diff --git a/erpnext/hooks.py b/erpnext/hooks.py
index 07347ce..1b130a6 100644
--- a/erpnext/hooks.py
+++ b/erpnext/hooks.py
@@ -89,7 +89,7 @@
 	{"title": _("Orders"), "route": "/orders", "reference_doctype": "Sales Order"},
 	{"title": _("Invoices"), "route": "/invoices", "reference_doctype": "Sales Invoice"},
 	{"title": _("Shipments"), "route": "/shipments", "reference_doctype": "Delivery Note"},
-	{"title": _("Issues"), "route": "/issues", "reference_doctype": "Issue"},
+	{"title": _("Issues"), "route": "/issues", "reference_doctype": "Issue", "show_always": True},
 	{"title": _("Addresses"), "route": "/addresses", "reference_doctype": "Address"}
 ]
 
diff --git a/erpnext/public/js/utils/document_flow.js b/erpnext/public/js/utils/document_flow.js
index 31aec8e..eaad6f8 100644
--- a/erpnext/public/js/utils/document_flow.js
+++ b/erpnext/public/js/utils/document_flow.js
@@ -3,7 +3,6 @@
 
 // for module flow
 
-frappe.provide('frappe.document_flow');
 $.extend(frappe.document_flow, {
 	"Selling": {
 		"Sales Order": ["Quotation", "Sales Order", "Delivery Note", "Sales Invoice", "Journal Entry"],