Skip to content

Commit

Permalink
Merge pull request #209 from aaronshaf/fix/optional-range
Browse files Browse the repository at this point in the history
fix: make range (sort) key optional
  • Loading branch information
aaronshaf authored Feb 4, 2022
2 parents 19177a2 + 9c702bb commit f7091d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/scan.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@
}
function addRangeKeyFilter (rangeKey, values) {
addFilter(rangeKey, values, true, ['=', '<', '<=', '>', '>=', 'BETWEEN', 'begins_with'])
addFilter(rangeKey, values, false, ['=', '<', '<=', '>', '>=', 'BETWEEN', 'begins_with'])
}
function removeFilter (node) {
Expand Down

0 comments on commit f7091d9

Please sign in to comment.