Skip to content

Commit

Permalink
fix: Remove undeclared variable (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
anshg1214 committed Oct 31, 2023
1 parent 133ab1f commit 58c5611
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ <h4>{{ _('Edition Group of this work') }}</h4>
{% if edition_group["author_credits"]|length > 1 %}
<a href="{{ url_for('bb_author.entity', id=edition_group['author_credits'][0]['author_bbid']) }}">
{{ edition_group['author_credits'][0]['name'] }}
</a> + {{ result["author_credits"]|length - 1 }} more
</a> + {{ edition_group["author_credits"]|length - 1 }} more
{% else %}
<a href="{{ url_for('bb_author.entity', id=edition_group['author_credits'][0]['author_bbid']) }}">
{{ edition_group['author_credits'][0]['name'] }}
Expand Down

0 comments on commit 58c5611

Please sign in to comment.