Add strip html filter
diff --git a/erpnext/public/js/hub/pages/Buying.vue b/erpnext/public/js/hub/pages/Buying.vue
index 57ad469..7c3fc27 100644
--- a/erpnext/public/js/hub/pages/Buying.vue
+++ b/erpnext/public/js/hub/pages/Buying.vue
@@ -14,7 +14,7 @@
 				>
 					<div slot="subtitle">
 						<span>{{item.recent_message.sender}}: </span>
-						<span>{{item.recent_message.content}}</span>
+						<span>{{item.recent_message.content | striphtml}}</span>
 					</div>
 				</item-list-card>
 			</div>
diff --git a/erpnext/public/js/hub/vue-plugins.js b/erpnext/public/js/hub/vue-plugins.js
index 7d0619f..e18af0c 100644
--- a/erpnext/public/js/hub/vue-plugins.js
+++ b/erpnext/public/js/hub/vue-plugins.js
@@ -60,3 +60,7 @@
 		handleImage(el, binding.value);
 	}
 });
+
+Vue.filter('striphtml', function (text) {
+	return strip_html(text);
+});
\ No newline at end of file