Add workflow templates to workflow screen (#2076)

This commit is contained in:
Shuchang Zheng
2025-04-02 15:43:23 -04:00
committed by GitHub
parent cf013af430
commit 3d7788791c

View File

@@ -44,6 +44,7 @@ import { ImportWorkflowButton } from "./ImportWorkflowButton";
import { WorkflowApiResponse } from "./types/workflowTypes";
import { WorkflowCreateYAMLRequest } from "./types/workflowYamlTypes";
import { WorkflowActions } from "./WorkflowActions";
import { WorkflowTemplates } from "../discover/WorkflowTemplates";
const emptyWorkflowRequest: WorkflowCreateYAMLRequest = {
title: "New Workflow",
@@ -303,6 +304,7 @@ function Workflows() {
</PaginationContent>
</Pagination>
</div>
<WorkflowTemplates />
</div>
</div>
);