Skip to content

Commit 92dc8fb

Browse files
authored
Fix bug with FilterQueryString (rappasoft#2014)
* Fix bug with FilterQueryString * Fix styling --------- Co-authored-by: lrljoe <[email protected]>
1 parent ad80321 commit 92dc8fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Traits/Core/QueryStrings/HasQueryStringForFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function queryStringForFilterIsEnabled(): bool
4444
{
4545
$this->setupQueryStringStatusForFilter();
4646

47-
return ($this->queryStringIsEnabled() === true || $this->getQueryStringStatusForFilter() === true) && $this->filtersAreEnabled();
47+
return $this->getQueryStringStatusForFilter() && $this->filtersAreEnabled();
4848
}
4949

5050
public function setQueryStringStatusForFilter(bool $status): self

0 commit comments

Comments
 (0)