diff --git a/components/MediaInput.vue b/components/MediaInput.vue
index b586e450..e726dadd 100644
--- a/components/MediaInput.vue
+++ b/components/MediaInput.vue
@@ -1,5 +1,6 @@
span
+ span {{ value }}
v-dialog(v-model='openMediaDetails' :fullscreen="$vuetify.breakpoint.xsOnly" width='1000px')
v-card
v-card-title {{$t('common.media')}}
@@ -38,23 +39,27 @@ span
div.col-12.pt-0(v-if='mediaPreview')
img.col-12.pa-0(:src='mediaPreview' v-if='!showPreview')
img.col-12.mediaPreview.pa-0(:src='mediaPreview' v-else :style="{ 'object-position': savedPosition }")
- span.text-center {{event.media[0].name}}
- v-file-input(
- v-else
- :label="$t('common.media')"
- :hint="$t('event.media_description')"
- :prepend-icon="mdiCamera"
- :value='value.image'
- @change="selectMedia"
- persistent-hint
- accept='image/*')
+ div(v-else)
+ v-text-field(
+ v-model='value.url'
+ :label="$t('common.media')"
+ )
+ v-file-input(
+ multiple
+ :label="$t('common.media')"
+ :hint="$t('event.media_description')"
+ :prepend-icon="mdiCamera"
+ :value='images'
+ @change="selectMedia"
+ persistent-hint
+ accept='image/*')