Skip to content

Commit

Permalink
fix upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mhekkel committed Dec 14, 2023
1 parent 7bb5984 commit 5789f2e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions webapp/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@ window.addEventListener('load', () => {
evt.preventDefault();

const customFile = document.getElementById('custom-file');
const paeFile = document.getElementById('custom-pae-file');

if (customFile.files.length == 1) {

const fd = new FormData();

fd.append("structure", customFile.files[0]);
fd.append("pae", paeFile.files[0])

var resultOK = false;

Expand Down

0 comments on commit 5789f2e

Please sign in to comment.