From 24f4a7caaafa93f51669dcf44a3dca09d5b228bb Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 30 Sep 2024 09:52:03 +0200 Subject: [PATCH 1/7] fix: improve allowed domains setting for sso --- .../src/lib/components/OAuthSetting.svelte | 48 +++++++++++++------ 1 file changed, 33 insertions(+), 15 deletions(-) diff --git a/frontend/src/lib/components/OAuthSetting.svelte b/frontend/src/lib/components/OAuthSetting.svelte index 18ff726f6a29c..9e67ef787cd84 100644 --- a/frontend/src/lib/components/OAuthSetting.svelte +++ b/frontend/src/lib/components/OAuthSetting.svelte @@ -1,4 +1,5 @@ + +
+
+ + + If the condition is met, the step will behave as an identity step, passing the previous + step's result through unchanged. + + + + { + if (isSkipEnabled && flowModule.skip_if) { + flowModule.skip_if = undefined + } else { + flowModule.skip_if = { + expr: 'false' + } + } + }} + options={{ + right: 'Skip step if condition is met' + }} + /> + +
+ {#if flowModule.skip_if} + Skip condition expression +
+ { + editor?.insertAtCursor(detail) + editor?.focus() + }} + > + + +
+ {:else} + Skip condition expression +