fix: jumpcloud scim support + instance settings ui bug (nextcloud oauth) (#6618)

* ee repo

* fixing infinite loop in instance settings with nextcloud

* ee ref
This commit is contained in:
Alexander Petric
2025-09-16 16:36:55 -04:00
committed by GitHub
parent 7ee830b5a7
commit 9ff4ca0662
2 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
7d665414b89d2de81a5d2a731a04e250537095f4
117c5cdc07d0382559f41984979ec0fef248f812
@@ -33,8 +33,14 @@
}
}
let enabled = $derived(value != undefined)
let lastDomain = $state(value?.['domain'])
$effect(() => {
changeDomain(value?.['domain'])
const currentDomain = value?.['domain']
if (currentDomain && currentDomain !== lastDomain) {
lastDomain = currentDomain
changeDomain(currentDomain)
}
})
</script>