If I do this in an Angular 5 template:
{{0.7 | percent:'1.2-5'}}
I get this as expected: 70.00%
However, when I do this:
{{0.07 | percent:'1.2-5'}}
I get 7.00000%
instead of what the expected 7.00%
Am I just doing something wrong or is this a bug in Angular?