This commit is contained in:
Zongjun Lan
2022-04-07 13:08:21 +08:00
parent 1f86f1d409
commit e9b834db10
2 changed files with 11 additions and 1 deletions
@@ -18,6 +18,7 @@
<?php js::set('vision', $this->config->vision);?>
<?php js::set('projectID', $projectID);?>
<?php js::set('productID', $productID);?>
<?php js::set('teamMemberError', $lang->task->error->teamMember);?>
<?php if(!empty($storyID)):?>
<style> .title-group.required > .required:after {right: 110px;}</style>
<?php endif;?>
+10 -1
View File
@@ -546,10 +546,19 @@ $('#modalTeam .btn').click(function()
if(teamList.length <= 2)
{
alert(teamMemberError);
return false;
}
else
{
$('.close').click();
if(config.onlybody == 'yes')
{
$('.close').parent().click();
}
else
{
$('.close').click();
}
}
});