feat(projects): edit page header and delete button.

This commit is contained in:
Ivan Li
2021-05-05 14:28:56 +08:00
parent b1e84709db
commit 4cf3b61da7
6 changed files with 145 additions and 16 deletions

View File

@@ -27,8 +27,12 @@ export const PipelineList: FC<Props> = ({ projectId }) => {
return (
<List>
{data?.pipelines.map((pipeline) => (
<Link name="pipeline-details" params={{pipelineId: pipeline.id}}>
<Item pipeline={pipeline} key={pipeline.id} />
<Link
name="pipeline-details"
params={{ pipelineId: pipeline.id }}
key={pipeline.id}
>
<Item pipeline={pipeline} />
</Link>
))}
</List>