fixed currency as right symbol

This commit is contained in:
Edward Yang 2023-05-06 08:55:53 +08:00
parent 773d1469bd
commit c6d07b1834
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ class CurrencyService
$string .= number_format(abs($amount), (int) $decimal_place, __('currency.decimal_point'), __('currency.thousand_point'));
if ($symbol_right) {
$string .= $symbol_right;
$string .= ' ' . $symbol_right;
}
return $string;