diff --git a/frappe/public/js/frappe/ui/toolbar/awesome_bar.js b/frappe/public/js/frappe/ui/toolbar/awesome_bar.js
index b85de18be2..952fd62aa1 100644
--- a/frappe/public/js/frappe/ui/toolbar/awesome_bar.js
+++ b/frappe/public/js/frappe/ui/toolbar/awesome_bar.js
@@ -194,9 +194,14 @@ frappe.search.AwesomeBar = class AwesomeBar {
var out = [], routes = [];
options.forEach(function(option) {
if(option.route) {
- if(option.route[0] === "List" && option.route[2] !== 'Report') {
+ if (
+ option.route[0] === "List" &&
+ option.route[2] !== 'Report' &&
+ option.route[2] !== 'Inbox'
+ ) {
option.route.splice(2);
}
+
var str_route = (typeof option.route==='string') ?
option.route : option.route.join('/');
if(routes.indexOf(str_route)===-1) {
diff --git a/frappe/public/js/frappe/views/inbox/inbox_view.js b/frappe/public/js/frappe/views/inbox/inbox_view.js
index 8b53bd49a9..6c5b330a9f 100644
--- a/frappe/public/js/frappe/views/inbox/inbox_view.js
+++ b/frappe/public/js/frappe/views/inbox/inbox_view.js
@@ -94,19 +94,20 @@ frappe.views.InboxView = class InboxView extends frappe.views.ListView {
this.render_list();
this.on_row_checked();
this.render_count();
- this.render_tags();
}
get_meta_html(email) {
const attachment = email.has_attachment ?
`` : '';
- const form_link = frappe.utils.get_form_link(email.reference_doctype, email.reference_name);
- const link = email.reference_doctype && email.reference_doctype !== this.doctype ?
- `
- ` : '';
+ `;
+ }
const communication_date = comment_when(email.communication_date, true);
const status =