Fix for kanban
This commit is contained in:
parent
e0468571a4
commit
8411e37d80
1 changed files with 1 additions and 1 deletions
|
|
@ -736,7 +736,7 @@
|
|||
<div class="view" data-bind="event: { click: startEditTask }">
|
||||
<div class="panel" data-bind="css: { running: is_running, hovered: is_panel_hovered }, event: { mouseover: onPanelMouseOver, mouseout: onPanelMouseOut }">
|
||||
<i class="fa fa-circle" data-bind="visible: project, css: projectColor"></i>
|
||||
<div data-bind="text: description().length > 100 ? description().substring(0, 100) + '...' : description()"></div>
|
||||
<div data-bind="text: description() && description().length > 100 ? description().substring(0, 100) + '...' : description()"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="edit">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue