fixed tags not being loaded into the result filters

This commit is contained in:
Jack 2021-04-13 20:17:14 +01:00
parent 644adb8bd6
commit 99ecbe27cc

View file

@ -98,7 +98,7 @@ export function getFilter(group, filter) {
export function loadTags(tags) {
tags.forEach((tag) => {
defaultResultFilters[tag.id] = true;
defaultResultFilters.tags[tag.id] = true;
});
}