Skip to content

Commit 67a8a9d

Browse files
G4Zz0L1lrljoe
andauthored
Update IsNumericFilter.php (#2230)
* Link column fix (#2223) (#2224) * Link column fix (#2223) * Add handling for From field for "LinkColumn" * Update ChangeLog * Update IsNumericFilter.php Fixes issues 2229 --------- Co-authored-by: Joe <[email protected]>
1 parent c7817c7 commit 67a8a9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Views/Filters/Traits/IsNumericFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ trait IsNumericFilter
66
{
77
public function isEmpty(float|int|string|array|null $value): bool
88
{
9-
return ! is_null($value) ? ($this->validate($value) == false) : true;
9+
return ! is_null($value) ? ($this->validate($value) === false) : true;
1010
}
1111

1212
/**

0 commit comments

Comments
 (0)