Fix: attributes to answered questions didn't automatically show, questions which became available are now shown if they become avaible because of a tag change. Fix #1587

This commit is contained in:
Pieter Vander Vennet 2023-11-13 01:20:38 +01:00
parent 370b200bb3
commit 7de0af15f1
3 changed files with 22 additions and 27 deletions

View file

@ -25,6 +25,11 @@
let knownTagRenderings = layer.tagRenderings
.filter(config => (config.condition?.matchesProperties($tags) ?? true) && (config.metacondition?.matchesProperties({ ...$tags, ..._metatags } ?? true)
&& config.IsKnown($tags)))
$: {
knownTagRenderings = layer.tagRenderings
.filter(config => (config.condition?.matchesProperties($tags) ?? true) && (config.metacondition?.matchesProperties({ ...$tags, ..._metatags } ?? true)
&& config.IsKnown($tags)))
}
</script>
{#if $tags._deleted === "yes"}