Skip to content

Commit

Permalink
fix a few ui things
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzejewsky committed Jan 12, 2021
1 parent 3754f1c commit 3f16b1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/nuxt-theme-module/theme/pages/Category.vue
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@
<span class="products__show-on-page__label">{{ $t('Show on page') }}</span>
<LazyHydrate on-interaction>
<SfSelect
:value="pagination.itemsPerPage"
:value="pagination.itemsPerPage.toString()"
class="products__items-per-page"
@input="th.changeItemsPerPage"
>
Expand Down Expand Up @@ -382,7 +382,7 @@ export default {
const breadcrumbs = computed(() => facetGetters.getBreadcrumbs(result.value));
const sortBy = computed(() => facetGetters.getSortOptions(result.value));
const facets = computed(() => facetGetters.getGrouped(result.value, ['color', 'size']));
const pagination = computed(() => facetGetters.getPagination(result.value).toString());
const pagination = computed(() => facetGetters.getPagination(result.value));
const activeCategory = computed(() => {
const items = categoryTree.value.items;
Expand Down

0 comments on commit 3f16b1c

Please sign in to comment.