From b78d749df18c812cede397728ccfeeeeda0552d6 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Sun, 8 Jan 2023 20:48:58 -0800 Subject: [PATCH] add config button to disk items --- config.html | 2 +- scripts/config.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/config.html b/config.html index 5fe9909..b462432 100644 --- a/config.html +++ b/config.html @@ -21,7 +21,7 @@
Disks -
+
diff --git a/scripts/config.js b/scripts/config.js index 1fe42e2..cf87a75 100644 --- a/scripts/config.js +++ b/scripts/config.js @@ -93,4 +93,7 @@ function addDiskLine (fieldset, id, iconHref, labelText, valueText) { let value = document.createElement("p"); value.innerText = valueText; field.append(value); + + let config = document.createElement("img"); + config.src = "images/actions/config-active.svg"; } \ No newline at end of file