forked from MapComplete/MapComplete
Fix: rendering of indoor room icons
This commit is contained in:
parent
6446586ac5
commit
6235e23192
1 changed files with 2 additions and 2 deletions
|
@ -31,8 +31,8 @@
|
|||
export let icon: IconConfig
|
||||
export let tags: Store<Record<string, string>>
|
||||
|
||||
let iconItem = icon.icon?.GetRenderValue(tags)?.txt
|
||||
$: iconItem = icon.icon?.GetRenderValue($tags)?.txt
|
||||
let iconItem = icon.icon?.GetRenderValue($tags)?.Subs($tags)?.txt
|
||||
$: iconItem = icon.icon?.GetRenderValue($tags)?.Subs($tags)?.txt
|
||||
let color = icon.color?.GetRenderValue(tags)?.txt ?? "#000000"
|
||||
$: color = icon.color?.GetRenderValue($tags)?.txt ?? "#000000"
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue