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 @@ -139,7 +139,6 @@

&.mobile {
max-width: none;
right: 100%;
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
<span local-class='paginator__control'>
<div local-class='paginator__select-wrapper'>
<select title={{t 'paginator.itemsPerPage'}} local-class='paginator__select' onchange={{action this.onPageSizeChange value='target.value'}}>
{{#each this.pageSizeOptions as |page_size_option|}}
<option value={{page_size_option}} selected={{eq page_size_option this.selectedPageSize}}>
{{t 'paginator.itemsPerPage'}} {{page_size_option}}
</option>
{{/each}}
</select>
<label>
{{t 'paginator.itemsPerPage'}}
<select local-class='paginator__select' onchange={{action this.onPageSizeChange value='target.value'}}>
{{#each this.pageSizeOptions as |page_size_option|}}
<option value={{page_size_option}} selected={{eq page_size_option this.selectedPageSize}}>
{{page_size_option}}
</option>
{{/each}}
</select>
</label>
</div>
</span>

Expand Down
Loading