Commit 716e45b17f71057405bc4483523710b7412e46fc
1 parent
a95ce595
big commti
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
frontend/web/js/filter.js
... | ... | @@ -73,11 +73,11 @@ function priceRequest(link){ |
73 | 73 | if(result=='0'){ |
74 | 74 | $(link).addClass('disabled-link'); |
75 | 75 | tag.find('input').prop( "disabled", true ); |
76 | - $(link).find("span").html(result); | |
76 | + $(link).find("span").html('('+result+')'); | |
77 | 77 | } else { |
78 | 78 | $(link).removeClass('disabled-link'); |
79 | 79 | tag.find('input').prop( "disabled", false ); |
80 | - $(link).find("span").html(result); | |
80 | + $(link).find("span").html('('+result+')'); | |
81 | 81 | } |
82 | 82 | |
83 | 83 | ... | ... |