link
This commit is contained in:
parent
4329b89ddf
commit
2f09ca4315
|
@ -1,5 +1,5 @@
|
|||
import React , { useEffect , useState } from 'react';
|
||||
import { Button ,Spin , Pagination } from 'antd';
|
||||
import { Button ,Spin , Pagination , Link } from 'antd';
|
||||
import Nodata from '../Nodata';
|
||||
import axios from 'axios';
|
||||
|
||||
|
@ -44,7 +44,7 @@ function CIList(props){
|
|||
return(
|
||||
<li>
|
||||
<span>
|
||||
<span>{item.name}</span>
|
||||
<Link to={`/projects/${item.author && item.author.login}/${item.identifier}`}>{item.name}</Link>
|
||||
{ item.open_devops ?
|
||||
<span className="authTag green ml20">已激活</span>
|
||||
:
|
||||
|
|
Loading…
Reference in New Issue