Compare commits

..

No commits in common. "470109013409438d52150c91762cb652572fc4ea" and "8edbf0cc0899a66a24b8a3f73e5c793c07fe739f" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View file

@ -1,12 +1,10 @@
## [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((string) $data);
return $this->create()->slugify($data);
}
protected function create(): BaseSlugify