pull gitlink_server

This commit is contained in:
谢思 2023-07-10 09:13:13 +08:00
commit f57af64ddc
5 changed files with 12 additions and 20857 deletions

20854
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -34,7 +34,7 @@ $primary-color:#466aff;
text-align: center;
}
}
.contentBox{
.contentForm{
padding:20px 20px 0px 20px;
& > div{
margin-bottom: 20px;

View File

@ -76,7 +76,7 @@ function Team(props){
</div>
{
list && list.length > 0 ?
<div className="contentBox">
<div className="contentForm">
{
list.map((item,key)=>{
return(

View File

@ -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;
}

View File

@ -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);