解决分支过滤配置显示错误问题
This commit is contained in:
parent
e053fd2878
commit
2f8da3aefa
2
pom.xml
2
pom.xml
|
@ -14,7 +14,7 @@
|
|||
</properties>
|
||||
|
||||
<artifactId>gitee-jenkins-plugin</artifactId>
|
||||
<version>1.0.7-SNAPSHOT</version>
|
||||
<version>1.0.7.1-SNAPSHOT</version>
|
||||
<name>Gitee Jenkins Plugin</name>
|
||||
<url>https://wiki.jenkins-ci.org/display/JENKINS/Gitee+Jenkins+Plugin</url>
|
||||
<packaging>hpi</packaging>
|
||||
|
|
|
@ -39,10 +39,10 @@
|
|||
<table>
|
||||
<!--<f:section title="">-->
|
||||
<f:radioBlock name="branchFilterType" value="All" title="${%Allow.all.branches}"
|
||||
checked="${instance.branchFilterType == null || instance.branchFilterType == 'All'}"
|
||||
checked="${instance.branchFilterType == null || instance.branchFilterType.toString() == 'All'}"
|
||||
inline="true" help="/plugin/gitee-plugin/help/help-noBranchFiltering.html"/>
|
||||
<f:radioBlock name="branchFilterType" value="NameBasedFilter" title="${%Filter.branches.by.name}"
|
||||
checked="${instance.branchFilterType == 'NameBasedFilter'}" inline="true"
|
||||
checked="${instance.branchFilterType.toString() == 'NameBasedFilter'}" inline="true"
|
||||
help="/plugin/gitee-plugin/help/help-allowedBranches.html">
|
||||
<f:entry title="${%Include}">
|
||||
<f:textbox name="includeBranchesSpec" field="includeBranchesSpec" autoCompleteDelimChar=","/>
|
||||
|
@ -53,7 +53,7 @@
|
|||
</f:radioBlock>
|
||||
|
||||
<f:radioBlock name="branchFilterType" value="RegexBasedFilter" title="${%Filter.branches.by.regex}"
|
||||
checked="${instance.branchFilterType == 'RegexBasedFilter'}" inline="true"
|
||||
checked="${instance.branchFilterType.toString() == 'RegexBasedFilter'}" inline="true"
|
||||
help="/plugin/gitee-plugin/help/help-filterBranchesByRegex.html">
|
||||
<f:entry title="${%Target.Branch.Regex}">
|
||||
<f:textbox name="targetBranchRegex" field="targetBranchRegex"/>
|
||||
|
|
Loading…
Reference in New Issue