From 23fefbb6440094b72fd4d45a5f3cc15d69d8ee8f Mon Sep 17 00:00:00 2001 From: Saurabh Date: Sat, 10 Mar 2018 04:08:22 +0530 Subject: [PATCH 1/2] 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 From 99ac259c9a48a28db6ff79134e1426de52c4b62c Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 13 Mar 2018 16:42:07 +0600 Subject: [PATCH 2/2] bumped to version 10.1.5 --- frappe/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/__init__.py b/frappe/__init__.py index 2314eeda22..dfbef90a17 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -14,7 +14,7 @@ import os, sys, importlib, inspect, json from .exceptions import * from .utils.jinja import get_jenv, get_template, render_template, get_email_from_template -__version__ = '10.1.4' +__version__ = '10.1.5' __title__ = "Frappe Framework" local = Local()