Skip to content

Commit 923a2f2

Browse files
committed
Fix web
1 parent 5dd5720 commit 923a2f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/web/src/query.ts.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class Query {
2828
`isNotNull("${attribute}")`;
2929

3030
static between = (attribute: string, start: string|number, end: string|number): string =>
31-
`between("${attribute}", ${Query.parseValues(start)}, ${Query.parseValues(end)}])`;
31+
`between("${attribute}", ${Query.parseValues(start)}, ${Query.parseValues(end)})`;
3232

3333
static startsWith = (attribute: string, value: string): string =>
3434
Query.addQuery(attribute, "startsWith", value);

0 commit comments

Comments
 (0)