Add due-date icon to us's in sprint list inside the backlog and taskboard
parent
82b815f6ff
commit
3a5b5aa05d
|
@ -24,6 +24,12 @@ div.sprint-table(tg-bind-scope, ng-class="{'sprint-empty-wrapper': !sprint.user_
|
||||||
ng-if="us.epics"
|
ng-if="us.epics"
|
||||||
epics="us.epics"
|
epics="us.epics"
|
||||||
)
|
)
|
||||||
|
tg-due-date.due-date(
|
||||||
|
due-date="us.due_date"
|
||||||
|
is-closed="us.is_closed"
|
||||||
|
ng-if="us.due_date"
|
||||||
|
obj-type="us"
|
||||||
|
)
|
||||||
div.column-points.width-1(tg-bo-bind="us.total_points",
|
div.column-points.width-1(tg-bo-bind="us.total_points",
|
||||||
ng-class="{closed: us.is_closed, blocked: us.is_blocked}")
|
ng-class="{closed: us.is_closed, blocked: us.is_blocked}")
|
||||||
|
|
||||||
|
|
|
@ -62,9 +62,16 @@ div.taskboard-table(
|
||||||
ng-if="us.epics"
|
ng-if="us.epics"
|
||||||
epics="us.epics"
|
epics="us.epics"
|
||||||
)
|
)
|
||||||
p.points-value
|
div.us-data
|
||||||
span(ng-bind="us.total_points")
|
p.points-value
|
||||||
span(translate="TASKBOARD.TABLE.FIELD_POINTS")
|
span(ng-bind="us.total_points")
|
||||||
|
span(translate="TASKBOARD.TABLE.FIELD_POINTS")
|
||||||
|
tg-due-date.due-date(
|
||||||
|
due-date="us.due_date"
|
||||||
|
is-closed="us.is_closed"
|
||||||
|
ng-if="us.due_date"
|
||||||
|
obj-type="us"
|
||||||
|
)
|
||||||
include ../components/addnewtask
|
include ../components/addnewtask
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -233,6 +233,14 @@ $column-padding: .5rem 1rem;
|
||||||
margin-right: .1rem;
|
margin-right: .1rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.us-data {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.due-date {
|
||||||
|
tg-svg {
|
||||||
|
position: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
tg-svg {
|
tg-svg {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
Loading…
Reference in New Issue