From 67cdf4f3e990286ebe0e1b4eb252a365fe1ee7c6 Mon Sep 17 00:00:00 2001 From: Freeng Date: Thu, 17 Aug 2023 14:56:45 +0800 Subject: [PATCH] Update Gt.php gt=greater than gte=greater than or equal --- src/Grid/Filter/Gt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Grid/Filter/Gt.php b/src/Grid/Filter/Gt.php index 3c94d32cef..7f32750713 100644 --- a/src/Grid/Filter/Gt.php +++ b/src/Grid/Filter/Gt.php @@ -28,6 +28,6 @@ public function condition($inputs) $this->value = $value; - return $this->buildCondition($this->column, '>=', $this->value); + return $this->buildCondition($this->column, '>', $this->value); } }