Skip to content

Commit

Permalink
Fix FilterModel to support bigint type
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrecek234 committed Jun 17, 2024
1 parent 12b9e3d commit cf408ce
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Table/Column/FilterModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public static function factoryType(App $app, Field $field): self

Types::BOOLEAN => FilterModel\TypeBoolean::class,
Types::INTEGER => FilterModel\TypeNumber::class,
Types::BIGINT => FilterModel\TypeNumber::class,
Types::FLOAT => FilterModel\TypeNumber::class,
CustomTypes::MONEY => FilterModel\TypeNumber::class,

Expand Down

0 comments on commit cf408ce

Please sign in to comment.