Fix type error
This commit is contained in:
parent
9671a77bee
commit
55c957d10b
|
@ -62,7 +62,7 @@ function getFilterQuery<K extends number = number>(filter: Filter<K>) {
|
||||||
if (key.startsWith('#')) {
|
if (key.startsWith('#')) {
|
||||||
const tag = key.replace(/^#/, '');
|
const tag = key.replace(/^#/, '');
|
||||||
const value = filter[key as `#${string}`] as string[];
|
const value = filter[key as `#${string}`] as string[];
|
||||||
query = query
|
return query
|
||||||
.leftJoin('tags', 'tags.event_id', 'events.id')
|
.leftJoin('tags', 'tags.event_id', 'events.id')
|
||||||
.where('tags.tag', '=', tag)
|
.where('tags.tag', '=', tag)
|
||||||
.where('tags.value_1', 'in', value);
|
.where('tags.value_1', 'in', value);
|
||||||
|
|
Loading…
Reference in New Issue