aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2024-02-17 02:40:15 +0100
committerJohannes Stoelp <johannes.stoelp@gmail.com>2024-02-17 02:40:15 +0100
commit71f601e9431878035e1ff3a60680cac4617bf095 (patch)
tree8643b4e058b5cc777a87ed4636f191975fa2523d
parentfb01a9122a6a104c509bf39fdee3803d778b67fd (diff)
downloadnotes-71f601e9431878035e1ff3a60680cac4617bf095.tar.gz
notes-71f601e9431878035e1ff3a60680cac4617bf095.zip
html: fix quote consistency
-rw-r--r--src/web/src/tags.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/src/tags.html b/src/web/src/tags.html
index 25597ca..d9ea9af 100644
--- a/src/web/src/tags.html
+++ b/src/web/src/tags.html
@@ -26,7 +26,7 @@ window.onload = () => {
const filter = document.getElementById("filter");
// Create buttons for each tag T.
- ['arm', 'x86', 'clear'].forEach(T => {
+ ["arm", "x86", "clear"].forEach(T => {
const btn = document.createElement("button");
btn.innerHTML = T;
btn.onclick = T === "clear"