Skip to content

Commit

Permalink
Merge pull request #64 from echicoine-icf/exists-bug-fix
Browse files Browse the repository at this point in the history
Fixing exists call
  • Loading branch information
brynrhodes authored Jan 25, 2024
2 parents b1d5ad9 + 04e6280 commit b13b55e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/liquid/Measure.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,14 @@
</tr>
{% endif %}

{% if Measure.author.exists() and Measure.author.name.exists()%}
{% if Measure.author.exists() and Measure.author.name.exists() %}
<tr>
<th scope="row"><b>Author: </b></th>
<td style="padding-left: 4px;">{{Measure.author.name}}</td>
</tr>
{% endif %}

{% if Measure.endorser.exists() and Measure.endorser.name exists()%}
{% if Measure.endorser.exists() and Measure.endorser.name.exists() %}
<tr>
<th scope="row"><b>Endorser: </b></th>
<td style="padding-left: 4px;">{{Measure.endorser.name}}</td>
Expand Down

0 comments on commit b13b55e

Please sign in to comment.