This commit is contained in:
Ruben Fiszel
2023-07-20 11:05:19 +02:00
parent 9c2b673982
commit b1de78b95b
3 changed files with 8 additions and 7 deletions

View File

@@ -1126,7 +1126,7 @@ paths:
text/plain:
schema:
type: string
/w/{workspace}/workspaces/edit_openai_resource_path:
post:
summary: edit OpenAI resource path
@@ -4230,7 +4230,7 @@ paths:
type: string
responses:
"201":
description: job resumed
description: job canceled
content:
text/plain:
schema:
@@ -4266,7 +4266,7 @@ paths:
type: object
responses:
"201":
description: job resumed
description: job canceled
content:
text/plain:
schema:

View File

@@ -67,7 +67,8 @@
class="!w-auto grow"
bind:this={input}
on:click|stopPropagation={() => {}}
on:keypress={({ key }) => {
on:keydown|stopPropagation
on:keypress|stopPropagation={({ key }) => {
if (key === 'Enter') save()
}}
/>

View File

@@ -163,9 +163,9 @@
title="Primary Schedule"
documentationLink="https://www.windmill.dev/docs/core_concepts/scheduling"
>
Flows can be triggered by any schedules, their webhooks or their UI but they only have
only one primary schedules with which they share the same path. The primary schedule
can be set here.
Flows can be triggered by any schedules, their webhooks or their UI but they have only
one primary schedulfs with which they share the same path. The primary schedule can be
set here.
</Alert>
<div class="mt-4" />
<FlowSchedules />