This commit is contained in:
tianshujie
2024-01-23 10:31:17 +08:00
parent 013bb67842
commit 98e33c5df3
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -68,11 +68,11 @@ $fields->field('assignedToBox')
/* Set name field width. */
$nameWidth = 'w-1/2';
if(empty(data('features.story')) && data('execution.type') != 'kanban') $nameWidth .= ' full:w-full';
if(empty(data('features.story')) && data('execution.type') != 'kanban' && !empty(data('execution.multiple'))) $nameWidth .= ' full:w-full';
if(data('execution.type') == 'kanban') $nameWidth .= ' lite:w-full';
$fields->field('name')->className($nameWidth);
if(!empty(data('features.story')) && data('execution.type') == 'kanban')
if(!empty(data('features.story')) && (data('execution.type') == 'kanban' || empty(data('execution.multiple'))))
{
$fields->field('module')->wrapBefore();
}