This commit is contained in:
parent
30f0fd82de
commit
4329b89ddf
|
|
@ -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>
|
||||
:
|
||||
|
|
|
|||
Loading…
Reference in New Issue