forked from Gitlink/forgeplus-react
merge+update
This commit is contained in:
parent
cee82314da
commit
b802fd2fbd
|
@ -49,6 +49,8 @@ class order_form extends Component {
|
||||||
this.getSelectList();
|
this.getSelectList();
|
||||||
//如果是复制issue则需要将原内容中的@谁录入 @列表中 (在tpm-md-editor.js中其实有处理,但是当用户点击【复制】按钮之后迅速创建issue会有延迟导致@失效)
|
//如果是复制issue则需要将原内容中的@谁录入 @列表中 (在tpm-md-editor.js中其实有处理,但是当用户点击【复制】按钮之后迅速创建issue会有延迟导致@失效)
|
||||||
if (this.state.form_type === "copy"){
|
if (this.state.form_type === "copy"){
|
||||||
|
const { projectsId , owner } = this.props.match.params;
|
||||||
|
const { description } = this.state;
|
||||||
let allUser = undefined;
|
let allUser = undefined;
|
||||||
axios.get(`/${owner}/${projectsId}/members.json`).then(response=>{
|
axios.get(`/${owner}/${projectsId}/members.json`).then(response=>{
|
||||||
if (response.data.total_count !== 0) {
|
if (response.data.total_count !== 0) {
|
||||||
|
|
Loading…
Reference in New Issue