- Markdown supported in column description.
- Project > Edit Board and Project Summary pages now show description as tooltip. - Project > Edit Board shows textarea with markdown preview. Edit column also shows markdown preview. - Fixed bug while adding a new column inserts description as column limit.
This commit is contained in:
committed by
Frederic Guillot
parent
6fbcbfb001
commit
77a307e4ff
@@ -118,7 +118,7 @@ class Board extends Base
|
||||
$values = array(
|
||||
'project_id' => $project_id,
|
||||
'title' => $title,
|
||||
'task_limit' => $task_limit,
|
||||
'task_limit' => intval($task_limit),
|
||||
'position' => $this->getLastColumnPosition($project_id) + 1,
|
||||
'description' => $description,
|
||||
);
|
||||
@@ -140,7 +140,7 @@ class Board extends Base
|
||||
{
|
||||
return $this->db->table(self::TABLE)->eq('id', $column_id)->update(array(
|
||||
'title' => $title,
|
||||
'task_limit' => $task_limit,
|
||||
'task_limit' => intval($task_limit),
|
||||
'description' => $description,
|
||||
));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user