diff --git a/module/bug/control.php b/module/bug/control.php index 02a196bbc9..b25f1db0d5 100644 --- a/module/bug/control.php +++ b/module/bug/control.php @@ -1007,7 +1007,7 @@ class bug extends control $projectMembers = $this->loadModel('project')->getTeamMemberPairs($projectID); $assignedToList = array_merge($projectMembers, $allUsers); - die(html::select('assignedTo', $assignedToList, $selectedUser, 'class="select-3"')); + die(html::select('assignedTo', $assignedToList, $selectedUser, 'class="form-control"')); } /** diff --git a/module/bug/js/common.js b/module/bug/js/common.js index 7f475d3108..c0a7577752 100644 --- a/module/bug/js/common.js +++ b/module/bug/js/common.js @@ -218,7 +218,7 @@ function setStories(moduleID, productID) link = createLink('story', 'ajaxGetProductStories', 'productID=' + productID + '&moduleID=' + moduleID); $.get(link, function(stories) { - if(!stories) stories = ''; + if(!stories) stories = ''; $('#story').replaceWith(stories); $('#story_chzn').remove(); $("#story").chosen({no_results_text: ''}); diff --git a/module/bug/view/assignto.html.php b/module/bug/view/assignto.html.php index 56758bfe8c..c887450e1d 100644 --- a/module/bug/view/assignto.html.php +++ b/module/bug/view/assignto.html.php @@ -17,25 +17,34 @@ include '../../common/view/chosen.html.php'; js::set('holders', $lang->bug->placeholder); js::set('page', 'assignedto'); ?> +