From 98e6464be628a8b9b45593921b5ec25b6cac171d Mon Sep 17 00:00:00 2001 From: James Collins Date: Sun, 23 Apr 2023 16:19:15 +1000 Subject: [PATCH] support media input --- resources/js/views/dashboard/EventEdit.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/views/dashboard/EventEdit.vue b/resources/js/views/dashboard/EventEdit.vue index c5d8da4..06e2eba 100644 --- a/resources/js/views/dashboard/EventEdit.vue +++ b/resources/js/views/dashboard/EventEdit.vue @@ -303,7 +303,7 @@ const loadData = async () => { form.controls.content.value = data.event.content ? data.event.content : ""; - form.controls.hero.value = data.event.hero.id; + form.controls.hero.value = data.event.hero; form.controls.price.value = data.event.price; form.controls.ages.value = data.event.ages;