Work around parameter type issue

This commit is contained in:
Matthias 2023-06-21 07:17:54 +02:00
parent d112c65800
commit c2303a7a76

View File

@ -30,5 +30,6 @@ defineProps<{
param: PairlistParameter;
}>();
const paramValue = defineModel<string>();
//TODO: type should really be PairlistParamValue
const paramValue = defineModel<any>();
</script>