Skip to content

Commit

Permalink
Merge pull request #388 from City-of-Helsinki/UHF-X-fix-deprecation-e…
Browse files Browse the repository at this point in the history
…rror

Fix deprecation error in views-view--job-listing-search.html.twig
  • Loading branch information
hyrsky authored Jan 9, 2024
2 parents 89c6fad + 6bbba84 commit 88790cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
<div class="job-listing-search__results">
<div class="job-listing-search__result-actions">
<span class="job-listing-search__count-container">
<span class="job-listing-search__count">{{ total_rows }}</span>
{% trans with {'context': 'Job listing search count'}%}open job listing{% plural total_rows %}open job listings{% endtrans %}
<span class="job-listing-search__count">{{ total_rows ?? 0 }}</span>
{% trans with {'context': 'Job listing search count'}%}open job listing{% plural total_rows ?? 0 %}open job listings{% endtrans %}
</span>
</div>
<div class="job-listing-search__result--list">
Expand Down

0 comments on commit 88790cb

Please sign in to comment.