Skip to content

Commit

Permalink
Merge branch 'bug-fixes' of https://github.com/modrinth/theseus into …
Browse files Browse the repository at this point in the history
…bug-fixes
  • Loading branch information
thesuzerain committed Aug 1, 2023
2 parents 651b88a + 7fe9e5d commit 840c076
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions theseus_gui/src/pages/Browse.vue
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ async function clearFilters() {
onlyOpenSource.value = false
selectedVersions.value = []
selectedEnvironments.value = []
await onSearchChange(1)
await onSearchChangeToTop(1)
}
async function toggleFacet(elementName, doNotSendRequest = false) {
Expand All @@ -410,7 +410,7 @@ async function toggleFacet(elementName, doNotSendRequest = false) {
}
if (!doNotSendRequest) {
await onSearchChange(1)
await onSearchChangeToTop(1)
}
}
Expand All @@ -423,7 +423,7 @@ async function toggleOrFacet(elementName, doNotSendRequest) {
}
if (!doNotSendRequest) {
await onSearchChange(1)
await onSearchChangeToTop(1)
}
}
Expand All @@ -436,7 +436,7 @@ function toggleEnv(environment, sendRequest) {
}
if (!sendRequest) {
onSearchChange(1)
onSearchChangeToTop(1)
}
}
Expand Down Expand Up @@ -600,7 +600,7 @@ const showLoaders = computed(
:clear-search-on-select="false"
:show-labels="false"
placeholder="Choose versions..."
@update:model-value="onSearchChange(1)"
@update:model-value="onSearchChangeToTop(1)"
/>
</div>
<div
Expand Down Expand Up @@ -647,7 +647,7 @@ const showLoaders = computed(
v-model="onlyOpenSource"
label="Open source only"
class="filter-checkbox"
@update:model-value="onSearchChange(1)"
@update:model-value="onSearchChangeToTop(1)"
/>
</div>
</Card>
Expand Down

0 comments on commit 840c076

Please sign in to comment.