From dee71e5167b27350e8cb78a098f00e2e8f7115c8 Mon Sep 17 00:00:00 2001 From: marination Date: Tue, 2 Jun 2020 19:46:13 +0530 Subject: [PATCH] fix: Number Card doesn't fetch data if country not India. --- frappe/public/js/frappe/widgets/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/widgets/utils.js b/frappe/public/js/frappe/widgets/utils.js index c92bdc1b5f..dff4db807e 100644 --- a/frappe/public/js/frappe/widgets/utils.js +++ b/frappe/public/js/frappe/widgets/utils.js @@ -128,7 +128,7 @@ function go_to_list_with_filters(doctype, filters) { } function shorten_number(number, country) { - country = country || ''; + country = (country == 'India') ? country : ''; const number_system = get_number_system(country); let x = Math.abs(Math.round(number)); for (const map of number_system) {