This commit is contained in:
Jan Prochazka
2021-11-10 17:38:18 +01:00
parent 6bcc83d920
commit 25fe1df43b

View File

@@ -9,8 +9,8 @@
export let onConfirm; export let onConfirm;
const handleSubmit = async values => { const handleSubmit = async e => {
onConfirm(values.url); onConfirm(e.detail.url);
closeCurrentModal(); closeCurrentModal();
}; };
</script> </script>