Skip to content

Commit

Permalink
Ran Lint and made recommended fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
jagabomb committed Mar 3, 2023
1 parent 00292c0 commit 26540bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/components/Table/Filter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function Filter({ options, title, value, onChange }) {
return (
<div className="flex-1 w-64 top-16" ref={ref}>
<div className="mt-1 relative">
{value.length != 0 && (
{value.length !== 0 && (
<button
type="button"
data-testid={`filter-${title}-clear`}
Expand Down

0 comments on commit 26540bd

Please sign in to comment.