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
Create the explorerCurrency pipe that takes a number and renders it our currency symbol
explorerCurrency
It should be possible to render amounts with this: {{item.value | explorerCurrency}}
{{item.value | explorerCurrency}}
Ideally, the currency symbol will be taken from a configuration file.
We use the following approach to render the explorer amounts: {{item.value}} {{'label.coinName' | translate}}
{{item.value}} {{'label.coinName' | translate}}
This has several drawbacks like requiring to repeat the translation key on every language.
The text was updated successfully, but these errors were encountered:
This is very similar to the work done on #42
Sorry, something went wrong.
web-ui: Add explorerCurrency pipe (wiringbits#43)
5428c71
Add pipe class and change all the occurrences to use it instead of label.coinName
No branches or pull requests
Create the
explorerCurrency
pipe that takes a number and renders it our currency symbolExpected behavior
It should be possible to render amounts with this:
{{item.value | explorerCurrency}}
Ideally, the currency symbol will be taken from a configuration file.
Actual behavior
We use the following approach to render the explorer amounts:
{{item.value}} {{'label.coinName' | translate}}
This has several drawbacks like requiring to repeat the translation key on every language.
The text was updated successfully, but these errors were encountered: