diff --git a/app/coffee/modules/common/directives.coffee b/app/coffee/modules/common/directives.coffee index 9972268f..b6993084 100644 --- a/app/coffee/modules/common/directives.coffee +++ b/app/coffee/modules/common/directives.coffee @@ -100,9 +100,10 @@ UsStatusDirective = ($repo) -> """) updateUsStatus = ($el, us, usStatusById) -> - usStatusDom = $el.find(".us-status") + usStatusDomParent = $el.find(".us-status") + usStatusDom = $el.find(".us-status .us-status-bind") usStatusDom.text(usStatusById[us.status].name) - usStatusDom.css('color', usStatusById[us.status].color) + usStatusDomParent.css('color', usStatusById[us.status].color) link = ($scope, $el, $attrs) -> $ctrl = $el.controller() diff --git a/app/coffee/modules/taskboard/main.coffee b/app/coffee/modules/taskboard/main.coffee index 20718b00..0e978c48 100644 --- a/app/coffee/modules/taskboard/main.coffee +++ b/app/coffee/modules/taskboard/main.coffee @@ -214,7 +214,11 @@ TaskboardUsPointsDirective = ($repo, $confirm) -> pointsTemplate = _.template(""" <% _.each(usRolePoints, function(rolePoint) { %>
  • - <%- rolePoint.role.name %> <%- rolePoint.point.name %> + <%- rolePoint.role.name %> + + <%- rolePoint.point.name %> + +