We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f66543c commit 71b0ef8Copy full SHA for 71b0ef8
apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.schedules.new/route.tsx
@@ -324,10 +324,16 @@ export function UpsertScheduleForm({
324
</Label>
325
<Input
326
{...conform.input(deduplicationKey, { type: "text" })}
327
+ disabled={schedule !== undefined}
328
defaultValue={
329
schedule?.userProvidedDeduplicationKey ? schedule?.deduplicationKey : undefined
330
}
331
/>
332
+ {schedule && (
333
+ <Paragraph variant="small">
334
+ You can't edit the Deduplication key on an existing schedule.
335
+ </Paragraph>
336
+ )}
337
<Hint>
338
Optionally specify a key, you can only create one schedule with this key. This is
339
very useful when using the SDK and you don't want to create duplicate schedules for
0 commit comments