fix: add conditional message in template string
diff --git a/erpnext/public/js/hub/pages/Search.vue b/erpnext/public/js/hub/pages/Search.vue
index 2a60889..8ab48d0 100644
--- a/erpnext/public/js/hub/pages/Search.vue
+++ b/erpnext/public/js/hub/pages/Search.vue
@@ -42,7 +42,7 @@
 	computed: {
 		page_title() {
 			return this.items.length
-				? __(`Results for <strong>${this.search_value}<strong> in category ${this.category}`)
+				? __(`Results for "${this.search_value}" ${this.category!=='All'? `in category ${this.category}`: ''}`)
 				: __('No Items found.');
 		}
 	},