Skip to content

Commit 978b513

Browse files
committed
Merge pull request #14 from safesoftware/bug/addFileParamTypes
Added missing filename types to generateformitems
2 parents 2486fe7 + 39d4eaa commit 978b513

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

‎v1.1/FMEServer.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ var FMEServer = ( function() {
512512
label.innerHTML = param.description;
513513
span.appendChild(label);
514514
var choice;
515-
if(param.type === "FILE_OR_URL") {
515+
if(param.type === "FILE_OR_URL" || param.type === "FILENAME_MUSTEXIST" || param.type === "FILENAME") {
516516
choice = document.createElement("input");
517517
choice.type = "file";
518518
choice.name = param.name;

0 commit comments

Comments
 (0)