Skip to content

Commit

Permalink
fix(crud-request): CondOperator's value is wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
Diluka committed Jul 12, 2019
1 parent fc50924 commit 430666c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/crud-request/src/types/request-query.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ export enum CondOperator {
GREATER_THAN = 'gt',
LOWER_THAN = 'lt',
GREATER_THAN_EQUALS = 'gte',
LOWER_THAN_EQAULS = 'lt',
LOWER_THAN_EQAULS = 'lte',
STARTS = 'starts',
ENDS = 'ends',
CONTAINS = 'contains',
CONTAINS = 'cont',
EXCLUDES = 'excl',
IN = 'in',
NOT_IN = 'notin',
Expand Down

0 comments on commit 430666c

Please sign in to comment.