forked from MapComplete/MapComplete
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:
parent
370b200bb3
commit
7de0af15f1
3 changed files with 22 additions and 27 deletions
|
@ -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"}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue