From 23fefbb6440094b72fd4d45a5f3cc15d69d8ee8f Mon Sep 17 00:00:00 2001 From: Saurabh Date: Sat, 10 Mar 2018 04:08:22 +0530 Subject: [PATCH] List-view title bug fix --- frappe/public/js/frappe/list/list_item_subject.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/list/list_item_subject.html b/frappe/public/js/frappe/list/list_item_subject.html index 380b71456e..6b5f4fd11c 100644 --- a/frappe/public/js/frappe/list/list_item_subject.html +++ b/frappe/public/js/frappe/list/list_item_subject.html @@ -13,12 +13,14 @@ {{ (_liked_by.length > 99 ? "99+" : _liked_by.length) || "" }} {% } %} + +{% var anchor_title = (_full_title).replace(/["]/g, "&\quot;"); %} {{ strip_html(_title) }} + title="{{ anchor_title }}">{{ strip_html(_title) }} {% if (_workflow && !_without_workflow) { %} {%= _workflow.value %} -{% } %} +{% } %} \ No newline at end of file