Skip to content

Commit

Permalink
Bugfix kind of branch added into LoadBaseBranch
Browse files Browse the repository at this point in the history
  • Loading branch information
gpongelli committed Jul 6, 2017
1 parent 9302a17 commit 2b79a07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plugins/GitFlow/GitFlowForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ private void DisplayBranchDatas()
private void LoadBaseBranches()
{
var branchType = cbType.SelectedValue.ToString();
var manageBaseBranch = (branchType == Branch.feature.ToString("G") || branchType == Branch.hotfix.ToString("G") || branchType == Branch.support.ToString("G"));
var manageBaseBranch = (branchType == Branch.feature.ToString("G") || branchType == Branch.hotfix.ToString("G") || branchType == Branch.support.ToString("G") || branchType == Branch.bugfix.ToString("G"));
pnlBasedOn.Visible = manageBaseBranch;

if (manageBaseBranch)
Expand Down

0 comments on commit 2b79a07

Please sign in to comment.