mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
Merge branch 'rf/restartConcurrencyLmits'
This commit is contained in:
@@ -145,7 +145,7 @@
|
||||
|
||||
{#if job?.raw_flow?.modules?.[approvalStep]?.suspend?.resume_form?.schema}
|
||||
<div class="w-full border rounded-lg p-2">
|
||||
<SchemaForm bind:args={default_payload} {defaultValues} {schema} />
|
||||
<SchemaForm onlyMaskPassword bind:args={default_payload} {defaultValues} {schema} />
|
||||
</div>
|
||||
{/if}
|
||||
<Tooltip
|
||||
|
||||
@@ -136,7 +136,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<CronInput bind:schedule={$primarySchedule.cron} bind:timezone={$primarySchedule.timezone} />
|
||||
<SchemaForm {schema} bind:args={$primarySchedule.args} />
|
||||
<SchemaForm onlyMaskPassword {schema} bind:args={$primarySchedule.args} />
|
||||
{#if emptyString($primarySchedule.cron)}
|
||||
<p class="text-xs text-tertiary mt-10">Define a schedule frequency first</p>
|
||||
{/if}
|
||||
|
||||
@@ -156,5 +156,5 @@
|
||||
</script>
|
||||
|
||||
{#if schema}
|
||||
<SchemaForm {schema} bind:args />
|
||||
<SchemaForm onlyMaskPassword {schema} bind:args />
|
||||
{/if}
|
||||
|
||||
@@ -769,6 +769,7 @@
|
||||
{#if render && (autoRefresh || forceSchemaDisplay) && schemaStripped && Object.keys(schemaStripped?.properties ?? {}).length > 0}
|
||||
<div class="px-2 h-fit min-h-0">
|
||||
<SchemaForm
|
||||
onlyMaskPassword
|
||||
schema={schemaStripped}
|
||||
appPath={defaultIfEmptyString($appPath, `u/${$userStore?.username ?? 'unknown'}/newapp`)}
|
||||
{computeS3ForceViewerPolicies}
|
||||
|
||||
@@ -650,6 +650,7 @@ export async function main(app_path: string, startup_duration = 5, kind: 'pdf' |
|
||||
{#if selectedTab !== 'custom' || customPath !== undefined}
|
||||
{#key selectedTab + JSON.stringify(customPathSchema ?? {})}
|
||||
<SchemaForm
|
||||
onlyMaskPassword
|
||||
bind:isValid={areArgsValid}
|
||||
bind:args
|
||||
schema={selectedTab !== 'custom'
|
||||
|
||||
Reference in New Issue
Block a user