fix price hint escaping (thanks @JuliusR)
This commit is contained in:
parent
2b6a84ddf8
commit
d67a0083f1
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
||||||
%span.add-on %
|
%span.add-on %
|
||||||
= f.input :deposit
|
= f.input :deposit
|
||||||
- else
|
- else
|
||||||
= f.input :price, :input_html => {:disabled => 'disabled'}, :hint => stock_article_price_hint(stock_article)
|
= f.input :price, :input_html => {:disabled => 'disabled'}, :hint => stock_article_price_hint(stock_article).html_safe
|
||||||
= f.association :article_category
|
= f.association :article_category
|
||||||
.modal-footer
|
.modal-footer
|
||||||
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
|
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
|
||||||
|
|
Loading…
Reference in a new issue