Skip to content
Merged
Show file tree
Hide file tree
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 @@ -7,6 +7,7 @@
<div class="content-body filter dropdown-filter">
<p>{{ filterEntry.translationKeys.description | translate }}</p>
<p-multi-select
[showToggleAll]="false"
[id]="filterEntry.key"
[options]="filterEntry.options"
[ngModel]="filterEntry.selectedFilters"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,21 @@ <h3 class="highlight">{{ 'collections.searchResults.noResults' | translate }}</h
</ng-template>
</p-select>
} @else {
<p-button severity="secondary" icon="fas fa-sliders" class="btn-icon-only" (click)="openFilters()"></p-button>
<p-button
severity="secondary"
icon="fas fa-sliders"
class="btn-icon-only"
(click)="openFilters()"
[ariaLabel]="'common.buttons.filter' | translate"
></p-button>

<p-button severity="secondary" icon="fas fa-filter" class="btn-icon-only" (click)="openSorting()"></p-button>
<p-button
severity="secondary"
icon="fas fa-filter"
class="btn-icon-only"
(click)="openSorting()"
[ariaLabel]="'common.buttons.sort' | translate"
></p-button>
}
</div>
</div>
Expand Down
4 changes: 3 additions & 1 deletion src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@
"editAndResubmit": "Edit And Resubmit",
"createNewVersion": "Create New Version",
"leaveThisView": "Leave this view",
"addOneMore": "Add One More"
"addOneMore": "Add One More",
"filter": "Filter",
"sort": "Sort"
},
"accessibility": {
"help": "Help",
Expand Down
Loading