ariaieboy / filament-currency

Enhanced Currency Related stuff for Filament
MIT License
49 stars 8 forks source link

[Bug]: Empty input field on edit page #7

Closed wotta closed 1 year ago

wotta commented 1 year ago

What happened?

When you have the following input field like the one below adding data in the form works as expected. When editing a record the input stays empty.

TextInput::make('balance')
    ->prefix('€')
    ->currencyMask()
    ->required(),

How to reproduce the bug

Use the following field it should happen.

TextInput::make('balance')
    ->prefix('€')
    ->currencyMask()
    ->required(),

Package Version

1.1.2

PHP Version

8.2.8

Laravel Version

10.25.2

Which operating systems does with happen with?

Windows

Notes

I am using WSL version: 2.0.4.0

ariaieboy commented 1 year ago

fixed in 1.1.3

wotta commented 1 year ago

Thanks, @ariaieboy! I tried to find the issue but do not know about filament plugins. Really appreciate the quick fix! Have a nice day