Merge remote-tracking branch 'upstream/gitlink_server' into cs_news
This commit is contained in:
commit
80779a986e
|
|
@ -34,7 +34,7 @@ $primary-color:#466aff;
|
|||
text-align: center;
|
||||
}
|
||||
}
|
||||
.contentBox{
|
||||
.contentForm{
|
||||
padding:20px 20px 0px 20px;
|
||||
& > div{
|
||||
margin-bottom: 20px;
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ function Team(props){
|
|||
</div>
|
||||
{
|
||||
list && list.length > 0 ?
|
||||
<div className="contentBox">
|
||||
<div className="contentForm">
|
||||
{
|
||||
list.map((item,key)=>{
|
||||
return(
|
||||
|
|
|
|||
|
|
@ -71,4 +71,13 @@
|
|||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.editormd-editing{
|
||||
border: 1px solid #ddd;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
.editormd-editing .editormd{
|
||||
border: none;
|
||||
margin:0px auto;
|
||||
overflow: unset;
|
||||
}
|
||||
|
|
@ -120,7 +120,7 @@ export default ({ mdID, onChange, onCMBeforeChange, onCMBlur, error = false, cla
|
|||
// 请求issues接口获取全部可quote的issue列表
|
||||
function getIssueList(keyword){
|
||||
axios.get(`/v1/${owner}/${projectsId}/issues`,{params:{
|
||||
only_name:true,keyword,sort_direction:"desc",sort_by:"issues.created_on"
|
||||
only_name:true,keyword,sort_direction:"desc",sort_by:"issues.created_on",limit:500,page:1
|
||||
}}).then(result=>{
|
||||
if(result){
|
||||
!keyword && setIssues(result.data.issues);
|
||||
|
|
|
|||
Loading…
Reference in New Issue