Skip to content

Commit

Permalink
Apply trim function to value inside array
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoryWullimann committed Mar 15, 2019
1 parent 048ab96 commit 8e2a08a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
if (fileName !== undefined) {
// handle files
document.querySelector('#aeneaLinuxPath').innerText = fileName;
global.setOptionalPathToAeneasBinary(fileName.trim());
global.setOptionalPathToAeneasBinary(fileName[0].trim());
}
})
}
Expand Down

0 comments on commit 8e2a08a

Please sign in to comment.