issue-文案、细节修改
This commit is contained in:
parent
4eae7e68b8
commit
f6ec470070
|
@ -27,7 +27,7 @@ function Releases({owner,projectsId,releaseVersions , baseOperate , projectType}
|
||||||
})
|
})
|
||||||
:
|
:
|
||||||
<div className="mt8">
|
<div className="mt8">
|
||||||
您暂未发布任何版本{baseOperate && projectType !==2 && <Link className="color-blue ml20" to={`/projects/${owner}/${projectsId}/releases/new`}>创建新版本</Link>}
|
您暂未发布任何版本{baseOperate && projectType !==2 && <Link className="color-blue ml20" to={`/${owner}/${projectsId}/releases/new`}>创建新版本</Link>}
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -329,7 +329,7 @@ class MergeForm extends Component {
|
||||||
placeholder={
|
placeholder={
|
||||||
issue_tags && issue_tags.length > 0
|
issue_tags && issue_tags.length > 0
|
||||||
? "未选择标签"
|
? "未选择标签"
|
||||||
: "请在仓库设置里添加标签"
|
: "请在仓库设置里添加标记"
|
||||||
}
|
}
|
||||||
showSearch
|
showSearch
|
||||||
>
|
>
|
||||||
|
|
|
@ -219,7 +219,7 @@ class Index extends Component {
|
||||||
user_id:owners_id
|
user_id:owners_id
|
||||||
}).then((result) => {
|
}).then((result) => {
|
||||||
if (result && result.data.id) {
|
if (result && result.data.id) {
|
||||||
projectsType && projectsType !== "mirror" && this.props.showNotification(`托管项目创建成功!`);
|
projectsType && projectsType !== "mirror" && this.props.showNotification(`项目创建成功!`);
|
||||||
this.props.history.push(`/${result.data.login}/${result.data.identifier}`);
|
this.props.history.push(`/${result.data.login}/${result.data.identifier}`);
|
||||||
}
|
}
|
||||||
this.setState({
|
this.setState({
|
||||||
|
@ -351,7 +351,7 @@ class Index extends Component {
|
||||||
required: true, message: '请填写镜像版本库地址'
|
required: true, message: '请填写镜像版本库地址'
|
||||||
}],
|
}],
|
||||||
})(
|
})(
|
||||||
<Input placeholder="输入需要同步到本项目的镜像版本库地址" onChange={this.ChangeAddr} />
|
<Input placeholder="请输入需要导入到本项目的仓库地址" onChange={this.ChangeAddr} />
|
||||||
)}
|
)}
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<p className="formTip color-orange">示例:https://github.com/facebook/reack.git</p>
|
<p className="formTip color-orange">示例:https://github.com/facebook/reack.git</p>
|
||||||
|
@ -386,7 +386,7 @@ class Index extends Component {
|
||||||
{getFieldDecorator('password', {
|
{getFieldDecorator('password', {
|
||||||
rules: [],
|
rules: [],
|
||||||
})(
|
})(
|
||||||
<Input.Password placeholder="请输入对应平台的登录用户名" autocomplete='new-password' style={{width:"240px"}}/>
|
<Input.Password placeholder="请输入对应平台的登录密码" autocomplete='new-password' style={{width:"240px"}}/>
|
||||||
)}
|
)}
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -442,13 +442,13 @@ class order_form extends Component {
|
||||||
</Select>
|
</Select>
|
||||||
)}
|
)}
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Form.Item label="标签">
|
<Form.Item label="标记">
|
||||||
{getFieldDecorator("issue_tag_ids", {rules: []})(
|
{getFieldDecorator("issue_tag_ids", {rules: []})(
|
||||||
<Select>
|
<Select>
|
||||||
<Option value={""}>
|
<Option value={""}>
|
||||||
{issue_chosen && issue_chosen.issue_tag.length > 0
|
{issue_chosen && issue_chosen.issue_tag.length > 0
|
||||||
? "未选择标签"
|
? "未选择标记"
|
||||||
: "请在仓库设置里添加标签"}
|
: "请在仓库设置里添加标记"}
|
||||||
</Option>
|
</Option>
|
||||||
{this.renderSelect(issue_chosen && issue_chosen.issue_tag)}
|
{this.renderSelect(issue_chosen && issue_chosen.issue_tag)}
|
||||||
</Select>
|
</Select>
|
||||||
|
|
|
@ -103,7 +103,7 @@ class Index extends Component {
|
||||||
<p>
|
<p>
|
||||||
<Link to={`/${owner}/${projectsId}/settings/labels`} className="w-100">
|
<Link to={`/${owner}/${projectsId}/settings/labels`} className="w-100">
|
||||||
<i className="iconfont icon-biaoqian3 font-18 mr10 color-grey-6"></i>
|
<i className="iconfont icon-biaoqian3 font-18 mr10 color-grey-6"></i>
|
||||||
项目标签
|
项目标记
|
||||||
</Link>
|
</Link>
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in New Issue