mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-24 00:00:46 +00:00
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:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user