We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In SEP-24 transaction form, there's a syntax error being raised due to a comma in the values:
This is where the value is getting rendered:
django-polaris/polaris/templates/polaris/base.html
Line 78 in 2ac9a01
The fix is likely to adjust how the value gets rendered and remove the comma.
The text was updated successfully, but these errors were encountered:
I was able to resolve by setting settings.USE_THOUSAND_SEPARATOR to False: https://docs.djangoproject.com/en/3.2/ref/settings/#use-thousand-separator
settings.USE_THOUSAND_SEPARATOR
False
But Polaris should not use commas by default even if settings.USE_THOUSAND_SEPARATOR is True, otherwise will break the JavaScript syntax.
True
Sorry, something went wrong.
No branches or pull requests
In SEP-24 transaction form, there's a syntax error being raised due to a comma in the values:
This is where the value is getting rendered:
django-polaris/polaris/templates/polaris/base.html
Line 78 in 2ac9a01
The fix is likely to adjust how the value gets rendered and remove the comma.
The text was updated successfully, but these errors were encountered: