z-song / laravel-admin

Build a full-featured administrative interface in ten minutes
https://laravel-admin.org
MIT License
11.15k stars 2.82k forks source link

Filter/Gt.php works as 'grater than equal' should be 'grater than' #5615

Open junamai2000 opened 2 years ago

junamai2000 commented 2 years ago

Hi,

I just realized thata gt funciont works as gte.

https://github.com/z-song/laravel-admin/blob/v1.8.19/src/Grid/Filter/Gt.php#L31

this line should be

return $this->buildCondition($this->column, '>', $this->value);

why is this line '>=' ? Is this an intended behavior?

Thanks