diff options
author | bobzel <zzzman@gmail.com> | 2023-06-09 13:24:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-09 13:24:29 -0400 |
commit | 8feb55cb8a6dc851f55ff4d7e612896c1045b626 (patch) | |
tree | f7a1c1a151c377fa131070f68c3434ee8e364bb3 /src/client/util/ReportManager.tsx | |
parent | 3a70c915f3f2b64de72ac7cdff316184cb12db53 (diff) | |
parent | 7d9a5bc08cb8c5f72a6795aef9374eef12a7cdef (diff) |
Merge pull request #172 from brown-dash/james-video-loading
Fix Image Loading
Diffstat (limited to 'src/client/util/ReportManager.tsx')
-rw-r--r-- | src/client/util/ReportManager.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/ReportManager.tsx b/src/client/util/ReportManager.tsx index 51742d455..4c1020455 100644 --- a/src/client/util/ReportManager.tsx +++ b/src/client/util/ReportManager.tsx @@ -173,7 +173,7 @@ export class ReportManager extends React.Component<{}> { // upload the files to the server if (input.files && input.files.length !== 0) { const fileArray: File[] = Array.from(input.files); - (Networking.UploadFilesToServer(fileArray)).then(links => { + (Networking.UploadFilesToServer(fileArray.map(file =>({file})))).then(links => { console.log('finshed uploading', links.map(this.getServerPath)); this.setFileLinks((links ?? []).map(this.getServerPath)); }) |