Skip to content

Commit

Permalink
fix(priceRanges): use formatNumber in defaultTemplate (#1559)
Browse files Browse the repository at this point in the history
fixes #1230
  • Loading branch information
vvo committed Nov 16, 2016
1 parent 543ba30 commit 557a501
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widgets/price-ranges/defaultTemplates.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
{{^to}}
≥
{{/to}}
{{currency}}{{from}}
{{currency}}{{#helpers.formatNumber}}{{from}}{{/helpers.formatNumber}}
{{/from}}
{{#to}}
{{#from}}
Expand All @@ -14,7 +14,7 @@ export default {
{{^from}}
≤
{{/from}}
{{to}}
{{#helpers.formatNumber}}{{to}}{{/helpers.formatNumber}}
{{/to}}
`,
footer: '',
Expand Down

0 comments on commit 557a501

Please sign in to comment.