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;
const handleSubmit = async values => {
onConfirm(values.url);
const handleSubmit = async e => {
onConfirm(e.detail.url);
closeCurrentModal();
};
</script>