Rename "Config" to "Options"

This commit is contained in:
Konrad Borowski 2022-05-06 20:03:28 +02:00
parent 742f9fb2b8
commit f6e118f3b6

View File

@ -17,7 +17,7 @@
export default function addOptionsLink() {
const li = document.createElement("li");
const a = document.createElement("a");
a.textContent = "Config";
a.textContent = "Options";
a.href = "/config";
li.append(a);
document.querySelector("#menu-buttons ul").append(li);