From 7666e707b9f06357b90faafee9816f8ed4afa378 Mon Sep 17 00:00:00 2001 From: prssanna Date: Mon, 24 Aug 2020 14:45:04 +0530 Subject: [PATCH] fix: remove button class in data pill --- frappe/public/js/frappe/dom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/dom.js b/frappe/public/js/frappe/dom.js index 21ee29934e..d00a53889f 100644 --- a/frappe/public/js/frappe/dom.js +++ b/frappe/public/js/frappe/dom.js @@ -303,7 +303,7 @@ frappe.get_data_pill = (label, target_id=null, remove_action=null) => { if (remove_action) { let remove_btn = $(` - ${frappe.utils.icon('close')} + ${frappe.utils.icon('close', 'sm', 'close')} `).click(() => { remove_action(target_id || label, data_pill_wrapper);