update control object with media change

This commit is contained in:
2023-02-28 18:35:26 +10:00
parent 13b2c448b5
commit 041dd4b314

View File

@@ -301,6 +301,11 @@ const handleMediaSelect = async (event) => {
if (result) {
mediaUrl.value = result.url;
emits("update:modelValue", result.id);
if (objControl) {
objControl.value = result.id;
feedbackInvalid.value = "";
}
}
};
</script>