Skip to content

Commit e726013

Browse files
committed
Merge branch 'rf/restartConcurrencyLmits'
2 parents 8a93418 + 7956d3a commit e726013

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

frontend/src/lib/components/FlowStatusWaitingForEvents.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145

146146
{#if job?.raw_flow?.modules?.[approvalStep]?.suspend?.resume_form?.schema}
147147
<div class="w-full border rounded-lg p-2">
148-
<SchemaForm bind:args={default_payload} {defaultValues} {schema} />
148+
<SchemaForm onlyMaskPassword bind:args={default_payload} {defaultValues} {schema} />
149149
</div>
150150
{/if}
151151
<Tooltip

frontend/src/lib/components/RunPageSchedules.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
</div>
137137
</div>
138138
<CronInput bind:schedule={$primarySchedule.cron} bind:timezone={$primarySchedule.timezone} />
139-
<SchemaForm {schema} bind:args={$primarySchedule.args} />
139+
<SchemaForm onlyMaskPassword {schema} bind:args={$primarySchedule.args} />
140140
{#if emptyString($primarySchedule.cron)}
141141
<p class="text-xs text-tertiary mt-10">Define a schedule frequency first</p>
142142
{/if}

frontend/src/lib/components/apps/components/display/dbtable/InsertRow.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,5 +156,5 @@
156156
</script>
157157

158158
{#if schema}
159-
<SchemaForm {schema} bind:args />
159+
<SchemaForm onlyMaskPassword {schema} bind:args />
160160
{/if}

frontend/src/lib/components/apps/components/helpers/RunnableComponent.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,7 @@
769769
{#if render && (autoRefresh || forceSchemaDisplay) && schemaStripped && Object.keys(schemaStripped?.properties ?? {}).length > 0}
770770
<div class="px-2 h-fit min-h-0">
771771
<SchemaForm
772+
onlyMaskPassword
772773
schema={schemaStripped}
773774
appPath={defaultIfEmptyString($appPath, `u/${$userStore?.username ?? 'unknown'}/newapp`)}
774775
{computeS3ForceViewerPolicies}

frontend/src/lib/components/apps/editor/AppReportsDrawerInner.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,7 @@ export async function main(app_path: string, startup_duration = 5, kind: 'pdf' |
650650
{#if selectedTab !== 'custom' || customPath !== undefined}
651651
{#key selectedTab + JSON.stringify(customPathSchema ?? {})}
652652
<SchemaForm
653+
onlyMaskPassword
653654
bind:isValid={areArgsValid}
654655
bind:args
655656
schema={selectedTab !== 'custom'

0 commit comments

Comments
 (0)