mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-12 15:08:45 +08:00
fixed tag filtering not working
This commit is contained in:
parent
c5aace859d
commit
85b32e6097
1 changed files with 1 additions and 1 deletions
|
@ -494,7 +494,7 @@ export function update() {
|
|||
}
|
||||
} else {
|
||||
//tags exist
|
||||
let validTags = DB.getSnapshot().tags.map((t) => t.id);
|
||||
let validTags = DB.getSnapshot().tags.map((t) => t._id);
|
||||
result.tags.forEach((tag) => {
|
||||
//check if i even need to check tags anymore
|
||||
if (!tagHide) return;
|
||||
|
|
Loading…
Reference in a new issue