1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00

Fix crashing when rendering any components settings that uses a ScreenSelect

This commit is contained in:
Andrew Kingston 2020-10-13 11:11:59 +01:00
parent 459544f3b4
commit d22f6f911f

View file

@ -9,6 +9,7 @@
export let value = "" export let value = ""
$: urls = getUrls() $: urls = getUrls()
$: console.log(urls)
const handleBlur = () => dispatch("change", value) const handleBlur = () => dispatch("change", value)
@ -61,9 +62,9 @@
sort: detailScreen.props._component, sort: detailScreen.props._component,
}) })
} }
return urls
} }
return urls
} }
</script> </script>