Skip to content

Commit

Permalink
[DT-916][risk=no] Fixing bug in variant filter (#8910)
Browse files Browse the repository at this point in the history
* DT-916 fixing bug for database type

* DT-916 set interval for number and count sliders

---------

Co-authored-by: Will Dolbeer <[email protected]>
  • Loading branch information
freemabd and dolbeew authored Nov 4, 2024
1 parent 0b00a96 commit 40cf215
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1548,6 +1548,7 @@ private static String convertSqlTypeToString(QueryParameterValue parameter) {
case INT64:
case FLOAT64:
case NUMERIC:
case BIGNUMERIC:
return parameter.getValue();
case STRING:
case TIMESTAMP:
Expand Down
2 changes: 2 additions & 0 deletions ui/src/app/pages/data/cohort/variant-search-filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@ export const VariantSearchFilters = ({
formState.countMin ?? filters.countMin,
formState.countMax ?? filters.countMax,
]}
step={1}
connect
/>
</div>
Expand Down Expand Up @@ -388,6 +389,7 @@ export const VariantSearchFilters = ({
formState.numberMin ?? filters.numberMin,
formState.numberMax ?? filters.numberMax,
]}
step={1}
connect
/>
</div>
Expand Down

0 comments on commit 40cf215

Please sign in to comment.