diff --git a/client/ui/board.jsx b/client/ui/board.jsx index a64893a..a0ea3a9 100644 --- a/client/ui/board.jsx +++ b/client/ui/board.jsx @@ -147,7 +147,11 @@ class ProjectColumn extends React.Component { if (state.explode) { const feature = board.tasks[feature_id]; if (feature.subtasks().length == 0) { - api.add_task({project_id: feature_id, title: '', size: 1}); + api.add_task({ + project_id: feature_id, + title: ' ', + description: '', + size: 1}); } } }