Skip to content

Commit

Permalink
use translated string for SelectAll
Browse files Browse the repository at this point in the history
  • Loading branch information
olamothe committed Mar 27, 2017
1 parent f9a8ae6 commit c368354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/Facet/FacetSearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ export class FacetSearch {
let selectAll = document.createElement('li');
if (Utils.isNonEmptyString(facetSearchParameters.valueToSearch)) {
$$(selectAll).addClass(['coveo-facet-selectable', 'coveo-facet-search-selectable', 'coveo-facet-search-select-all']);
$$(selectAll).text('SelectAll');
$$(selectAll).text(l('SelectAll'));
$$(selectAll).on('click', () => this.selectAllValuesMatchingSearch());
if (!this.isMobileDevice()) {
this.searchResults.appendChild(selectAll);
Expand Down

0 comments on commit c368354

Please sign in to comment.