Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix deprecation error in views-view--job-listing-search.html.twig #388

Merged
merged 1 commit into from
Jan 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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