workflow selecter on frontend for quick testing

This commit is contained in:
Felix Kaspar 2023-11-07 02:34:00 +01:00
parent 48f0c24886
commit 55bab60e89
2 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,7 @@
<br>
<br>
<textarea name="workflow" id="workflow" cols="30" rows="10"></textarea>
<textarea name="workflow" id="workflow" cols="120" rows="20"></textarea>
<br>
<select id="pdfOptions">
</select>

View File

@ -11,7 +11,6 @@ import * as Functions from "./functions.js";
// Clear existing options (if any)
dropdown.innerHTML = '';
console.log(exampleWorkflows);
// Iterate over the keys of the object and create an option for each key
for (const key in exampleWorkflows) {
const option = document.createElement('option');