* fix bug #772.
This commit is contained in:
@@ -19,7 +19,7 @@ $config->story->review = new stdclass();
|
||||
$config->story->create->requiredFields = 'title';
|
||||
$config->story->change->requiredFields = 'title';
|
||||
$config->story->close->requiredFields = 'closedReason';
|
||||
$config->story->review->requiredFields = 'assignedTo,reviewedBy,result';
|
||||
$config->story->review->requiredFields = 'assignedTo,reviewedBy';
|
||||
|
||||
$config->story->editor = new stdclass();
|
||||
$config->story->editor->create = array('id' => 'spec,verify', 'tools' => 'simpleTools');
|
||||
|
||||
@@ -5,6 +5,7 @@ function switchShow(result)
|
||||
$('#rejectedReasonBox').show();
|
||||
$('#preVersionBox').hide();
|
||||
$('#assignedTo').val('closed');
|
||||
$('#assignedTo').trigger("chosen:updated");
|
||||
}
|
||||
else if(result == 'revert')
|
||||
{
|
||||
@@ -13,6 +14,7 @@ function switchShow(result)
|
||||
$('#duplicateStoryBox').hide();
|
||||
$('#childStoriesBox').hide();
|
||||
$('#assignedTo').val(assignedTo);
|
||||
$('#assignedTo').trigger("chosen:updated");
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -22,6 +24,7 @@ function switchShow(result)
|
||||
$('#childStoriesBox').hide();
|
||||
$('#rejectedReasonBox').hide();
|
||||
$('#assignedTo').val(assignedTo);
|
||||
$('#assignedTo').trigger("chosen:updated");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user