Fix US related task regresion
parent
88869ae2c9
commit
885748a627
|
@ -30,8 +30,8 @@ module = angular.module("taigaRelatedTasks", [])
|
||||||
|
|
||||||
|
|
||||||
RelatedTaskRowDirective = ($repo, $compile, $confirm, $rootscope, $loading, $template, $translate, $emojis) ->
|
RelatedTaskRowDirective = ($repo, $compile, $confirm, $rootscope, $loading, $template, $translate, $emojis) ->
|
||||||
templateView = $template.get("task/related-taskboard-row.html", true)
|
templateView = $template.get("task/related-task-row.html", true)
|
||||||
templateEdit = $template.get("task/related-taskboard-row-edit.html", true)
|
templateEdit = $template.get("task/related-task-row-edit.html", true)
|
||||||
|
|
||||||
link = ($scope, $el, $attrs, $model) ->
|
link = ($scope, $el, $attrs, $model) ->
|
||||||
@childScope = $scope.$new()
|
@childScope = $scope.$new()
|
||||||
|
|
|
@ -9,7 +9,7 @@ section.related-tasks(
|
||||||
.row.single-related-task.js-related-task(
|
.row.single-related-task.js-related-task(
|
||||||
ng-repeat="task in tasks"
|
ng-repeat="task in tasks"
|
||||||
ng-class="{closed: task.is_closed, blocked: task.is_blocked, iocaine: task.is_iocaine}"
|
ng-class="{closed: task.is_closed, blocked: task.is_blocked, iocaine: task.is_iocaine}"
|
||||||
tg-related-taskboard-row
|
tg-related-task-row
|
||||||
ng-model="task"
|
ng-model="task"
|
||||||
)
|
)
|
||||||
div(tg-related-task-create-form)
|
div(tg-related-task-create-form)
|
||||||
|
|
Loading…
Reference in New Issue