Fix typo in duplicate filter error text
This commit is contained in:
parent
86eee2f617
commit
4accec5be7
1 changed files with 1 additions and 1 deletions
2
query.js
2
query.js
|
@ -589,7 +589,7 @@ class ItemSearchState {
|
|||
this.getFilter(NameFilter.TYPE).adjoin(filter);
|
||||
return;
|
||||
}
|
||||
throw new Error(`Duplicate filters: $[type.name}`);
|
||||
throw new Error(`Duplicate filters: ${type.name}`);
|
||||
}
|
||||
this.filterList.push(filter);
|
||||
this.filterTable.set(type, filter);
|
||||
|
|
Loading…
Reference in a new issue