Ihar Aliakseyenka

Results 6 comments of Ihar Aliakseyenka

@jarednovan sorry for misleading. PR was intended for `1.x` version as it is causing fatal error. It was my bad I called branch `2.x` - to be honest I don't...

It happens because of step 6 - while you physically removed image from disk its metadata and attachment post type object itself still presents in database. You may check it...

Does this really fix it? The error comes from constructor because of incorrect type. If just change type into `protected ?float $value` this should fix it (tested only on PHP8.2)...

@xam8re I'm not saying this is good. In fact it is not application-level exception but PHP [TypeError](https://www.php.net/manual/en/class.typeerror.php) because you're passing `null` value into constructor which accepts float only as value....

To be more concrete here is my suggestion Add new property and method into `Orchid\Screen\TD` class ```php protected $empty = ''; public function empty($empty) { $this->empty = $empty; return $this;...

@xam8re If you need quick fix in a project you may render component itself, e.g ```php // this code part is from my project with exact same problem but for...