Skip to content

Commit

Permalink
πŸ› Fix events log for filter
Browse files Browse the repository at this point in the history
  • Loading branch information
nwingt committed Jan 7, 2025
1 parent 4edd6a4 commit 9f77fdb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/store/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@
name="sorting"
:value="item.value"
:checked="item.value === selectedLanguageFilter"
@change="selectedLanguageFilter = item.value"
@change="handleFilterLanguageChange(item.value)"
/>
</label>
</li>
Expand All @@ -441,6 +441,7 @@
<ListingPageOptionList
v-model="selectedPriceFilter"
:items="priceFilterList"
@input="handleFilterPriceChange"
/>
</li>

Expand Down

0 comments on commit 9f77fdb

Please sign in to comment.