-
Notifications
You must be signed in to change notification settings - Fork 111
FilterModel bug with in 5.2 release #2210
Copy link
Copy link
Closed
Labels
Description
Simple bug, but unfortunately GitHub won't let me create a new branch anymore, so here in quick words:
- Create grid with $grid->addFilterColumn() where one of the columns is a bigint ID.
- FilterModel misses the bigint type assignment and thus it throws an error.
ui/src/Table/Column/FilterModel.php
Line 52 in 12b9e3d
$class = [
Just add
Types::INTEGER => FilterModel\TypeNumber::class,
to $class array and all works fine again.
Reactions are currently unavailable