mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Fix issue in number formatting.
This commit is contained in:
@@ -34,8 +34,6 @@ use Throwable;
|
||||
* Class CurrencyForm
|
||||
*
|
||||
* All currency related form methods.
|
||||
*
|
||||
* See reference nr. 22
|
||||
*/
|
||||
class CurrencyForm
|
||||
{
|
||||
@@ -61,7 +59,7 @@ class CurrencyForm
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function currencyField(string $name, string $view, $value = null, array $options = null): string
|
||||
protected function currencyField(string $name, string $view, mixed $value = null, array $options = null): string
|
||||
{
|
||||
$label = $this->label($name, $options);
|
||||
$options = $this->expandOptionArray($name, $label, $options);
|
||||
|
Reference in New Issue
Block a user