Allow uploading attachments through views
This commit is contained in:
parent
99fc3420fd
commit
fa3a8342dc
|
@ -49,7 +49,11 @@
|
||||||
data.append("file", fileList[i])
|
data.append("file", fileList[i])
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
return await API.uploadAttachment(formContext?.dataSource?.tableId, data)
|
let sourceId = formContext?.dataSource?.tableId
|
||||||
|
if (formContext?.dataSource?.type === "viewV2") {
|
||||||
|
sourceId = formContext.dataSource.id
|
||||||
|
}
|
||||||
|
return await API.uploadAttachment(sourceId, data)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue