Skip to content

Commit

Permalink
FFWEB-3128: Fix paging component
Browse files Browse the repository at this point in the history
Fix paging component
  • Loading branch information
Rayn93 authored Jul 26, 2024
1 parent f7315bf commit 3eb40ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% block component_factfinder_paging %}
<ff-paging class="pagination" unresolved {% if showOnly %} show-only="{{ showOnly }}" {% endif %}>
<ff-paging class="pagination" unresolved {% if showOnly %} show-only {% endif %}>
<ff-paging-item type="firstLink" class="page-item page-first">
<div class="page-link">
{% sw_icon 'arrow-medium-double-left' style { size: 'fluid', pack: 'solid'} %}
Expand All @@ -14,7 +14,7 @@

{% for p in -1..1 %}
<ff-paging-item type="currentLink{% if p %} {{ p }}{% endif %}" class="page-item{% if not p %} active{% endif %}">
<div class="page-link">{{ '{{caption}}' }}</div>
<div class="page-link">{{ '{{page}}' }}</div>
</ff-paging-item>
{% endfor %}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<ff-sortbox-select class="sorting" unresolved
subscribe="{{ config.subscribe.value ? 'true' : 'false' }}"
{{ config.opened.value ? 'opened' : '' }}
{{ config.showSelected.value ? 'show-selected="true"' : '' }}
{{ config.showSelected.value ? 'show-selected-first="config.showSelectedFirst.value"' }}>
{{ config.showSelected.value ? 'show-selected=true' : '' }}
{{ config.showSelected.value ? 'show-selected-first=config.showSelectedFirst.value' }}>
<select class="sorting custom-select" aria-label="{{ 'general.sortingLabel'|trans|striptags }}"></select>
</ff-sortbox-select>
{% endblock %}
Expand Down

0 comments on commit 3eb40ca

Please sign in to comment.