Skip to content

Commit

Permalink
fix(request): render title values for priority and type fields
Browse files Browse the repository at this point in the history
  • Loading branch information
anpa committed Nov 13, 2020
1 parent 0020eac commit 4c28714
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/request_page.hbs
Expand Up @@ -200,7 +200,7 @@
</dd>

{{#if request.type}}
<dt>{{t 'type'}}</dt>
<dt>{{request.type_title}}</dt>
<dd>
{{request.type_name}}
{{#is request.type 'task'}}
Expand All @@ -210,7 +210,7 @@
{{/if}}

{{#if request.priority}}
<dt>{{t 'priority'}}</dt>
<dt>{{request.priority_title}}</dt>
<dd>
{{request.priority_name}}
</dd>
Expand Down

0 comments on commit 4c28714

Please sign in to comment.