forked from Gitlink/forgeplus-react
issue
This commit is contained in:
parent
ea8b50ff50
commit
8b2eb1d9c1
|
|
@ -42,7 +42,7 @@ function CopyTool({ beforeText, afterText, className , inputId , timeOut }) {
|
|||
title={title}
|
||||
onVisibleChange={() => { setTitle(beforeText) }}
|
||||
>
|
||||
<i className={`iconfont icon-fuzhiicon ${className}`} style={{ color: '#466aff' }} onClick={copyUrl}></i>
|
||||
<i className={`iconfont icon-fuzhiicon cursor ${className}`} style={{ color: '#466aff' }} onClick={copyUrl}></i>
|
||||
</Tooltip>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -434,7 +434,7 @@ function Details(props){
|
|||
editFlag={editFlag}
|
||||
chooseFunc={(list)=>{setAssigner_choose(list);let l = list && list.length>0 ?list.map(i=>{return i.id || i.name}):[];saveForeach(l);}}
|
||||
double={5}
|
||||
removeFlag
|
||||
removeFlag={!editFlag}
|
||||
/>
|
||||
<DropMenu
|
||||
placeholder="状态"
|
||||
|
|
@ -461,7 +461,7 @@ function Details(props){
|
|||
chooseFunc={(list)=>{setTag_choose(list);let l = list && list.length>0 ?list.map(i=>{return i.id || i.name}):[];saveForeach(undefined,undefined,undefined,l);}}
|
||||
double={3}
|
||||
colorFlag="2"
|
||||
removeFlag
|
||||
removeFlag={!editFlag}
|
||||
editFlag={editFlag}
|
||||
onAdd={permission && permission !== "Reporter" ? ()=>{getSign();} :false}
|
||||
owner={owner}
|
||||
|
|
|
|||
|
|
@ -185,7 +185,7 @@ function CoderDepot(props){
|
|||
setZip_url(result.data.zip_url);
|
||||
let c = result.data.last_commit
|
||||
setLastCommit(c && c.commit);
|
||||
setLastCommitAuthor(c && c.committer);
|
||||
setLastCommitAuthor(c && c.author);
|
||||
setMainFlag(true);
|
||||
setReadOnly(true);
|
||||
// setReadme(result.data.readme);
|
||||
|
|
@ -233,7 +233,7 @@ function CoderDepot(props){
|
|||
}
|
||||
let c = result.data.last_commit
|
||||
setLastCommit(c && c.commit);
|
||||
setLastCommitAuthor(c && c.committer);
|
||||
setLastCommitAuthor(c && c.author);
|
||||
setMainFlag(false);
|
||||
setReadOnly(true);
|
||||
setReadOnly(!editReadme);
|
||||
|
|
|
|||
|
|
@ -263,6 +263,9 @@
|
|||
color: #466AFF;
|
||||
}
|
||||
}
|
||||
li{
|
||||
line-height: 15px;
|
||||
}
|
||||
margin-top: 2px;
|
||||
// cursor: pointer;
|
||||
#ptxt{
|
||||
|
|
|
|||
|
|
@ -779,6 +779,8 @@ a.color-grey-ccc:hover{
|
|||
}
|
||||
.treecopy-cont{
|
||||
padding: 4px 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.btn-83{
|
||||
margin-left: 20px;
|
||||
|
|
|
|||
|
|
@ -161,7 +161,7 @@
|
|||
padding:0px 15px;
|
||||
border-right: 1px solid rgba(153, 153, 153, 0.4);
|
||||
height: 100%;
|
||||
width: 135px;
|
||||
width: 140px;
|
||||
img{
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue