This commit is contained in:
caishi 2020-09-07 12:00:07 +08:00
parent 4329b89ddf
commit 2f09ca4315
1 changed files with 2 additions and 2 deletions

View File

@ -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>
: