Skip to content

Commit

Permalink
adding jsonbArrayType DT
Browse files Browse the repository at this point in the history
  • Loading branch information
kjain110 committed Dec 17, 2024
1 parent 2825566 commit 2e8b24d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/QueryBuilder/QueryBuilder/helpers/valueBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ export const valueBuilder = ({ value, field, operator, fieldOptions, intl, timez

[DATA_TYPES.ArrayType]: () => (isArray ? getCommaSeparatedStr(value) : getQuotedStr(value, isInRelatedOperator)),

[DATA_TYPES.JsonbArrayType]: () => (isArray ? getCommaSeparatedStr(value) : getQuotedStr(value, isInRelatedOperator)),

Check failure on line 55 in src/QueryBuilder/QueryBuilder/helpers/valueBuilder.js

View workflow job for this annotation

GitHub Actions / ui / Install and lint / Install and lint

This line has a length of 122. Maximum allowed is 120

[DATA_TYPES.EnumType]: () => (isArray ? getCommaSeparatedStr(value) : getQuotedStr(value, isInRelatedOperator)),

[DATA_TYPES.BooleanType]: () => getQuotedStr(value, isInRelatedOperator),
Expand Down

0 comments on commit 2e8b24d

Please sign in to comment.