Rename workflow parameter to input parameter (#1071)
This commit is contained in:
@@ -63,16 +63,20 @@ function WorkflowRunParameters() {
|
||||
{} as Record<string, unknown>,
|
||||
);
|
||||
|
||||
const header = (
|
||||
<header className="space-y-5">
|
||||
<h1 className="text-3xl">Parameters</h1>
|
||||
<h2 className="text-lg text-slate-400">
|
||||
Fill the placeholder values that you have linked throughout your
|
||||
workflow.
|
||||
</h2>
|
||||
</header>
|
||||
);
|
||||
|
||||
if (isFetching) {
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
<header className="space-y-5">
|
||||
<h1 className="text-3xl">Run Parameters</h1>
|
||||
<h2 className="text-lg text-slate-400">
|
||||
Fill the placeholder values that you have linked throughout your
|
||||
workflow.
|
||||
</h2>
|
||||
</header>
|
||||
{header}
|
||||
<Skeleton className="h-96 w-full" />
|
||||
</div>
|
||||
);
|
||||
@@ -84,13 +88,7 @@ function WorkflowRunParameters() {
|
||||
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
<header className="space-y-5">
|
||||
<h1 className="text-3xl">Run Parameters</h1>
|
||||
<h2 className="text-lg text-slate-400">
|
||||
Fill the placeholder values that you have linked throughout your
|
||||
workflow.
|
||||
</h2>
|
||||
</header>
|
||||
{header}
|
||||
<RunWorkflowForm
|
||||
initialValues={initialValues}
|
||||
workflowParameters={workflowParameters}
|
||||
|
||||
Reference in New Issue
Block a user