This commit is contained in:
caishi 2020-09-07 11:38:43 +08:00
parent 30f0fd82de
commit 4329b89ddf
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ function CIList(props){
const url = `/users/${user.login}/projects.json`;
axios.get(url,{
params:{
limit , page
limit , page , category:"manage"
}
}).then(result=>{
if(result && result.data){
@ -44,7 +44,7 @@ function CIList(props){
return(
<li>
<span>
<span>{item.author && item.author.name}/{item.name}</span>
<span>{item.name}</span>
{ item.open_devops ?
<span className="authTag green ml20">已激活</span>
: