Skip to content

Commit

Permalink
#1489 Display missin case number in waiting tasks and my tasks pages
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Oct 19, 2020
1 parent 48d0fb9 commit a25ea42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/app/views/directives/entity-link.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<span ng-if="value._type == 'case'">
<a class="text-muted wrap"href ng-click="openLink(entityUrl(value))">
<i class="glyphicon glyphicon-folder-open"></i>
&nbsp;#{{value.caseId}} - {{value.title}}&nbsp;
&nbsp;#{{value.caseId || value.number}} - {{value.title}}&nbsp;
</a>
</span>
<span ng-if="value._type == 'Case'">
<a class="text-muted wrap"href ng-click="openLink(entityUrl(value))">
<i class="glyphicon glyphicon-folder-open"></i>
&nbsp;#{{value.caseId}} - {{value.title}}&nbsp;
&nbsp;#{{value.caseId || value.number}} - {{value.title}}&nbsp;
</a>
</span>
<span ng-if="value._type == 'case_task'">
Expand Down

0 comments on commit a25ea42

Please # to comment.