diff options
Diffstat (limited to 'ext/wasm/batch-runner.js')
-rw-r--r-- | ext/wasm/batch-runner.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/wasm/batch-runner.js b/ext/wasm/batch-runner.js index 0f5406f90..71171c323 100644 --- a/ext/wasm/batch-runner.js +++ b/ext/wasm/batch-runner.js @@ -119,7 +119,8 @@ list.forEach(function(fn){ if(!fn) return; opt = document.createElement('option'); - opt.value = opt.innerText = fn; + opt.value = fn; + opt.innerText = fn.split('/').pop(); sel.appendChild(opt); }); this.logHtml("Loaded",infile); |