${window.lang.strings("inviteNoInvites")}
diff --git a/ts/modules/lang.ts b/ts/modules/lang.ts
index ebface0..aba0951 100644
--- a/ts/modules/lang.ts
+++ b/ts/modules/lang.ts
@@ -77,7 +77,7 @@ export const loadLangSelector = (page: string) => {
const list = document.getElementById("lang-list") as HTMLDivElement;
let innerHTML = '';
for (let code in req.response) {
- innerHTML += `
${req.response[code]}`;
+ innerHTML += `
${req.response[code]}`;
}
list.innerHTML = innerHTML;
}
diff --git a/ts/modules/profiles.ts b/ts/modules/profiles.ts
index a03cf50..39ad52c 100644
--- a/ts/modules/profiles.ts
+++ b/ts/modules/profiles.ts
@@ -23,10 +23,10 @@ class profile implements Profile {
get admin(): boolean { return this._adminChip.classList.contains("chip"); }
set admin(state: boolean) {
if (state) {
- this._adminChip.classList.add("chip", "~info", "ml-half");
+ this._adminChip.classList.add("chip", "~info", "ml-2");
this._adminChip.textContent = "Admin";
} else {
- this._adminChip.classList.remove("chip", "~info", "ml-half");
+ this._adminChip.classList.remove("chip", "~info", "ml-2");
this._adminChip.textContent = "";
}
}
diff --git a/ts/modules/settings.ts b/ts/modules/settings.ts
index b69a144..5559069 100644
--- a/ts/modules/settings.ts
+++ b/ts/modules/settings.ts
@@ -109,7 +109,7 @@ class DOMInput {
`;
this._tooltip = this._container.querySelector("div.setting-tooltip") as HTMLDivElement;
@@ -263,7 +263,7 @@ class DOMBool implements SBool {
this._container = document.createElement("div");
this._container.classList.add("setting");
this._container.innerHTML = `
-