Not rendering org default currency symbol - (Shows always $)

Have set org’s Currency Locale to English (India) - INR. Currency fields are getting rendered properly with INR symbols in the salesforce standard layout. But it is showing $ by default in the skuid pages.

Found the reason for this.

The fix for this issue is available in the version Brooklyn 10.0.15 and Millau 11.0.5. Instead if there are any risk of upgrade, you can add this in-line script on each page.


!function(n){var r=n.currency.getSymbol,c={INR:“₹”,KRW:“₩”,KPW:“₩”};n.currency.getSymbol=function(n){return c[n]||r(n)}}(skuid);