Try this?

This commit is contained in:
Alex Gleason 2023-08-09 02:03:18 -05:00
parent a1c8d3352f
commit 2d2157293c
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ function getFilterQuery(filter: Filter) {
return query
.leftJoin('tags', 'tags.event_id', 'events.id')
.where('tags.tag', '=', tag)
.where('tags.value_1', 'in', value);
.where('tags.value_1', 'in', value) as typeof query;
}
}