allow uploads

This commit is contained in:
2023-07-19 12:48:17 +10:00
parent e5e5c7e19c
commit bfacb86f35

View File

@@ -60,7 +60,7 @@ const mediaItems: Ref<Media[]> = ref([]);
* Handle the user adding a new media item. * Handle the user adding a new media item.
*/ */
const handleClickAdd = async () => { const handleClickAdd = async () => {
openDialog(SMDialogMedia, { mime: "", accepts: "" }) openDialog(SMDialogMedia, { mime: "", accepts: "", allowUpload: true })
.then((result) => { .then((result) => {
const media = result as Media; const media = result as Media;
@@ -85,7 +85,7 @@ const handleClickRemove = (media_id: string) => {
} }
const mediaIndex = mediaItems.value.findIndex( const mediaIndex = mediaItems.value.findIndex(
(media) => media.id === media_id (media) => media.id === media_id,
); );
if (mediaIndex !== -1) { if (mediaIndex !== -1) {
mediaItems.value.splice(mediaIndex, 1); mediaItems.value.splice(mediaIndex, 1);
@@ -124,7 +124,7 @@ watch(
(newValue) => { (newValue) => {
value.value = newValue; value.value = newValue;
handleLoad(); handleLoad();
} },
); );
handleLoad(); handleLoad();