ソースを参照

Merge branch 'dev'

prodstable
コミット
4e303c89fe
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      common/web/js/utils.js

+ 1
- 1
common/web/js/utils.js ファイルの表示

@@ -35,7 +35,7 @@ function numberDecimals(num, decimals) {
* @returns {string}
*/
function formatPrice(price) {
return numberTwoDecimals(price).replace('.', ',') + ' €';
return numberDecimals(price, 2).replace('.', ',') + ' €';
}

/**

読み込み中…
キャンセル
保存