aboutsummaryrefslogtreecommitdiff
path: root/ext/wasm/batch-runner.js
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2022-08-30 10:04:08 +0000
committerstephan <stephan@noemail.net>2022-08-30 10:04:08 +0000
commitfbf0f488cfe0a240ca219969a334d498a30769b5 (patch)
tree76d0b0d41a2e10d07f1de180223d27c04b8409a3 /ext/wasm/batch-runner.js
parent429899ddad8acac2346874184d263f438ac9b4b6 (diff)
downloadsqlite-fbf0f488cfe0a240ca219969a334d498a30769b5.tar.gz
sqlite-fbf0f488cfe0a240ca219969a334d498a30769b5.zip
batch-runner.js: move generated SQL files into ./sql and start adding hand-written ones (like the Mandelbrot) to that set.
FossilOrigin-Name: 06c106a7d23e4486dbed092757b7588688226ad35539ecc31378a8497f59d1ec
Diffstat (limited to 'ext/wasm/batch-runner.js')
-rw-r--r--ext/wasm/batch-runner.js3
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);