anupd
1
How can I change the currency format from Millions to Lakhs in number card ?
I think this is available in Bangladesh, India, Myanmar, Pakistan as i found on code
get_number_system: function (country) {
if (["Bangladesh", "India", "Myanmar", "Pakistan"].includes(country)) {
return number_systems.indian;
} else {
return number_systems.default;
}
},
check on
anupd
3
Got it. But could not make it work with custom app and hooks.