Skip to content

Commit

Permalink
fix: fix typo in enums for filter type (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinPfeffer committed Dec 17, 2024
1 parent 2e994b8 commit ea9a5de
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ enum class FilterType(val filterString: String? = null) {
CONTAINS("contains"),
EMPTY("empty"),
NE("ne"),
IS_NULL("isnull"),
IS_NOT_NULL("isnotnull"),
IS_NULL("isNull"),
IS_NOT_NULL("isNotNull"),
LIKE("like"),
BETWEEN("between"),
CUSTOM("custom")
Expand Down

0 comments on commit ea9a5de

Please sign in to comment.