From f19906e3806c7b101b8cb92a84841709032034ad Mon Sep 17 00:00:00 2001 From: Juanfran Date: Fri, 7 Nov 2014 09:41:06 +0100 Subject: [PATCH] fix #1510 - add static text in the kanban us title attribute --- app/partials/views/components/kanban-task.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/partials/views/components/kanban-task.jade b/app/partials/views/components/kanban-task.jade index 427ad023..76a4c80b 100644 --- a/app/partials/views/components/kanban-task.jade +++ b/app/partials/views/components/kanban-task.jade @@ -4,7 +4,7 @@ div.kanban-task-inner div.task-text a.task-assigned(href="", title="Assign User Story") span.task-num(tg-bo-ref="us.ref") - a.task-name(href="", tg-bo-title="us.subject", ng-bind="us.subject", + a.task-name(href="", title="See user story detail", ng-bind="us.subject", tg-nav="project-userstories-detail:project=project.slug,ref=us.ref") a.task-points(href="", title="Total Us points") span(ng-bind="us.total_points") --