diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-02-17 02:40:15 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-02-17 02:40:15 +0100 |
commit | 71f601e9431878035e1ff3a60680cac4617bf095 (patch) | |
tree | 8643b4e058b5cc777a87ed4636f191975fa2523d /src | |
parent | fb01a9122a6a104c509bf39fdee3803d778b67fd (diff) | |
download | notes-71f601e9431878035e1ff3a60680cac4617bf095.tar.gz notes-71f601e9431878035e1ff3a60680cac4617bf095.zip |
html: fix quote consistency
Diffstat (limited to 'src')
-rw-r--r-- | src/web/src/tags.html | 2 |
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" |