Add option that a TagRendering can automatically introduce a builtin filter when added

This commit is contained in:
Pieter Vander Vennet 2024-07-18 15:35:56 +02:00
parent f33e9f78b7
commit 5bd14c64da
10 changed files with 54 additions and 16 deletions

View file

@ -236,8 +236,11 @@ export class GenerateFavouritesLayer extends Script {
if (seenTitleIcons.has(titleIcon.id)) {
continue
}
if(titleIcon.id === undefined){
continue
}
seenTitleIcons.add(titleIcon.id)
console.log("Adding ", titleIcon.id)
console.log("Adding title icon", titleIcon.id)
titleIcons.push(titleIcon)
}
}