diff --git a/app/coffee/modules/taskboard/main.coffee b/app/coffee/modules/taskboard/main.coffee
index fbe9b59b..55568f91 100644
--- a/app/coffee/modules/taskboard/main.coffee
+++ b/app/coffee/modules/taskboard/main.coffee
@@ -235,7 +235,8 @@ TaskboardUsPointsDirective = ($repo, $confirm) ->
<% _.each(points, function(point) { %>
-
-
<%- point.name %>
@@ -294,7 +295,7 @@ TaskboardUsPointsDirective = ($repo, $confirm) ->
$scope.$apply ->
onSuccess = ->
- $repo.refresh(us) ->
+ $repo.refresh(us).then ->
# TODO: Remove me when backlog will be fixed
$ctrl.loadSprintStats()
diff --git a/app/styles/modules/taskboard-table.scss b/app/styles/modules/taskboard-table.scss
index 44d292b0..bb6d6454 100644
--- a/app/styles/modules/taskboard-table.scss
+++ b/app/styles/modules/taskboard-table.scss
@@ -100,7 +100,8 @@ $column-margin: 0 10px 0 0;
a {
display: block;
text-align: center;
- &:hover {
+ &:hover,
+ &.active {
background: $fresh-taiga;
color: $white;
}