Reviews: add import key functionality

This commit is contained in:
Pieter Vander Vennet 2024-02-20 16:53:26 +01:00
parent 2482ecefc2
commit ec4f109a2e
6 changed files with 141 additions and 11 deletions

View file

@ -4,7 +4,7 @@
import LayerConfig from "../../Models/ThemeConfig/LayerConfig"
export let tags: UIEventSource<Record<string, any>>
export let tagKeys = tags.map((tgs) => Object.keys(tgs))
export let tagKeys = tags.map(tgs => tgs === undefined ? [] : Object.keys(tgs))
export let layer: LayerConfig | undefined = undefined