Compare commits

...

2 commits

Author SHA1 Message Date
Simon Vieille 4701090134
update changelog 2024-01-27 15:49:58 +01:00
Simon Vieille c40c7e3362
fix type casting in slugifier 2024-01-27 15:49:39 +01:00
2 changed files with 3 additions and 1 deletions

View file

@ -1,10 +1,12 @@
## [Unreleased]
## [v1.24.0] - 2024-01-27
### Added
* add CSS class `no-wrap`
* copy the pager of the CRUD at the bottom of the list
### Fixed
* fix an issue with the file manager when editing an item opened in a modal
* fix type casting in slugifier
## [v1.23.0] - 2023-11-01
### Added

View file

@ -13,7 +13,7 @@ class Slugify
{
public function slugify($data): ?string
{
return $this->create()->slugify($data);
return $this->create()->slugify((string) $data);
}
protected function create(): BaseSlugify