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 authored and To-om committed Nov 13, 2020
1 parent cd1aad0 commit a74a2fb
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 a74a2fb

Please sign in to comment.