From 55bab60e892670686f6187bdec83b700b4cc0a10 Mon Sep 17 00:00:00 2001 From: Felix Kaspar <ich@felixkaspar.com> Date: Tue, 7 Nov 2023 02:34:00 +0100 Subject: [PATCH] workflow selecter on frontend for quick testing --- client-vanilla/index.html | 2 +- client-vanilla/index.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/client-vanilla/index.html b/client-vanilla/index.html index b3b9c68f..9bf37058 100644 --- a/client-vanilla/index.html +++ b/client-vanilla/index.html @@ -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> diff --git a/client-vanilla/index.js b/client-vanilla/index.js index 5673e4fe..0d76f6a3 100644 --- a/client-vanilla/index.js +++ b/client-vanilla/index.js @@ -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');