mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-07-03 20:41:07 +02:00
added note about publishing to triggers
This commit is contained in:
parent
63e95cf853
commit
b3bd89a478
3 changed files with 22 additions and 7 deletions
|
|
@ -131,8 +131,13 @@ export function CreateRecurringJobRuleForm({
|
||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
) : null}
|
) : null}
|
||||||
<div className="text-sm font-medium text-gray-900 dark:text-gray-100">
|
<div>
|
||||||
CREATE RECURRING JOB RULE
|
<div className="text-sm font-medium text-gray-900 dark:text-gray-100">
|
||||||
|
CREATE RECURRING JOB RULE
|
||||||
|
</div>
|
||||||
|
<p className="mt-1 text-xs text-gray-500 dark:text-gray-400">
|
||||||
|
Note: Triggers run only on the published version of your workflow. Publish any changes to make them active.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -460,9 +460,14 @@ export function TriggersTab({ projectId }: { projectId: string }) {
|
||||||
return (
|
return (
|
||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<h3 className="text-lg font-semibold text-gray-900 dark:text-gray-100">
|
<div>
|
||||||
Select a Toolkit to Create Trigger
|
<h3 className="text-lg font-semibold text-gray-900 dark:text-gray-100">
|
||||||
</h3>
|
Select a Toolkit to Create Trigger
|
||||||
|
</h3>
|
||||||
|
<p className="mt-1 text-xs text-gray-500 dark:text-gray-400">
|
||||||
|
Note: Triggers run only on the published version of your workflow. Publish any changes to make them active.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
{triggers.length > 0 && (
|
{triggers.length > 0 && (
|
||||||
<Button
|
<Button
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
|
|
|
||||||
|
|
@ -120,8 +120,13 @@ export function CreateScheduledJobRuleForm({ projectId, onBack, hasExistingTrigg
|
||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
) : null}
|
) : null}
|
||||||
<div className="text-sm font-medium text-gray-900 dark:text-gray-100">
|
<div>
|
||||||
CREATE SCHEDULED JOB RULE
|
<div className="text-sm font-medium text-gray-900 dark:text-gray-100">
|
||||||
|
CREATE SCHEDULED JOB RULE
|
||||||
|
</div>
|
||||||
|
<p className="mt-1 text-xs text-gray-500 dark:text-gray-400">
|
||||||
|
Note: Triggers run only on the published version of your workflow. Publish any changes to make them active.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue