jqh пре 6 година
родитељ
комит
e5deb273ab
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/Grid/Filter/Between.php

+ 1 - 1
src/Grid/Filter/Between.php

@@ -87,7 +87,7 @@ class Between extends AbstractFilter
 
         $this->query = 'whereBetween';
 
-        return $this->buildCondition($this->column, $this->value);
+        return $this->buildCondition($this->column, [$value['start'], $value['end']]);
     }
 
     /**