Add to changelog
parent
45d618ca13
commit
c175e4d1da
|
@ -12,6 +12,7 @@
|
||||||
- Display the current user (me) at first in assignment lightbox (thanks to [@mikaoelitiana](https://github.com/mikaoelitiana))
|
- Display the current user (me) at first in assignment lightbox (thanks to [@mikaoelitiana](https://github.com/mikaoelitiana))
|
||||||
- Add a new permissions to allow add comments instead of use the existent modify permission for this purpose.
|
- Add a new permissions to allow add comments instead of use the existent modify permission for this purpose.
|
||||||
- Ability to edit comments, view edition history and redesign comments module UI
|
- Ability to edit comments, view edition history and redesign comments module UI
|
||||||
|
- Upvote and downvote issues from the issues list.
|
||||||
|
|
||||||
### Misc
|
### Misc
|
||||||
- Lots of small and not so small bugfixes.
|
- Lots of small and not so small bugfixes.
|
||||||
|
|
|
@ -16,7 +16,7 @@ section.issues-table.basic-table(ng-class="{empty: !issues.length}")
|
||||||
div.level-field(tg-listitem-type="issue")
|
div.level-field(tg-listitem-type="issue")
|
||||||
div.level-field(tg-listitem-severity="issue")
|
div.level-field(tg-listitem-severity="issue")
|
||||||
div.level-field(tg-listitem-priority="issue")
|
div.level-field(tg-listitem-priority="issue")
|
||||||
div.votes(
|
div.votes.ng-animate-disabled(
|
||||||
ng-class="{'inactive': !issue.total_voters}"
|
ng-class="{'inactive': !issue.total_voters}"
|
||||||
ng-if="!issue.is_voter"
|
ng-if="!issue.is_voter"
|
||||||
title="{{ 'COMMON.VOTE_BUTTON.COUNTER_TITLE'|translate:{total:issue.total_voters||0}:'messageformat' }}"
|
title="{{ 'COMMON.VOTE_BUTTON.COUNTER_TITLE'|translate:{total:issue.total_voters||0}:'messageformat' }}"
|
||||||
|
@ -25,7 +25,7 @@ section.issues-table.basic-table(ng-class="{empty: !issues.length}")
|
||||||
)
|
)
|
||||||
tg-svg(svg-icon="icon-upvote")
|
tg-svg(svg-icon="icon-upvote")
|
||||||
span {{ issue.total_voters }}
|
span {{ issue.total_voters }}
|
||||||
div.votes(
|
div.votes.ng-animate-disabled(
|
||||||
ng-class="{'is-voted': issue.is_voter}"
|
ng-class="{'is-voted': issue.is_voter}"
|
||||||
ng-if="issue.is_voter"
|
ng-if="issue.is_voter"
|
||||||
title="{{ 'COMMON.VOTE_BUTTON.COUNTER_TITLE'|translate:{total:issue.total_voters||0}:'messageformat' }}"
|
title="{{ 'COMMON.VOTE_BUTTON.COUNTER_TITLE'|translate:{total:issue.total_voters||0}:'messageformat' }}"
|
||||||
|
|
Loading…
Reference in New Issue