replaced authentik with generic oidc provider

This commit is contained in:
Gani Georgiev
2023-02-23 21:07:00 +02:00
parent e529fe7e2a
commit aa4e405f92
55 changed files with 495 additions and 330 deletions
+2 -2
View File
@@ -21,9 +21,9 @@
clearTimeout(expandTimeoutId);
expandTimeoutId = setTimeout(() => {
if (accordionElem?.scrollIntoViewIfNeeded) {
accordionElem?.scrollIntoViewIfNeeded();
accordionElem.scrollIntoViewIfNeeded();
} else if (accordionElem?.scrollIntoView) {
accordionElem?.scrollIntoView({
accordionElem.scrollIntoView({
behavior: "smooth",
block: "nearest",
});
@@ -8,9 +8,7 @@
let inputElem;
let locked = false;
$: if (value === mask) {
locked = true;
}
$: locked = value === mask;
async function unlock() {
value = "";