fix(ui): move files variable to the top in channel upload form component
Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2307>
This commit is contained in:
parent
934e179d59
commit
943b50ffda
|
@ -63,6 +63,8 @@ const values = reactive({
|
|||
album: null
|
||||
})
|
||||
|
||||
const files = ref([] as VueUploadItem[])
|
||||
|
||||
//
|
||||
// Channels
|
||||
//
|
||||
|
@ -164,7 +166,6 @@ const baseImportMetadata = computed(() => ({
|
|||
//
|
||||
// Uploaded files
|
||||
//
|
||||
const files = ref([] as VueUploadItem[])
|
||||
const removed = reactive(new Set<string>())
|
||||
const uploadedFiles = computed(() => {
|
||||
const uploadedFiles = files.value.map(file => {
|
||||
|
|
Loading…
Reference in New Issue