diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-10-17 18:38:38 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-10-17 18:38:38 +0900 |
| commit | 3a11dba24f839016bad295ce2e68dac04d7a3d5b (patch) | |
| tree | c98f583a8d3b83a6f558e35cf2a6f77e98fbd811 /src/client | |
| parent | :art: (diff) | |
| download | sharkey-3a11dba24f839016bad295ce2e68dac04d7a3d5b.tar.gz sharkey-3a11dba24f839016bad295ce2e68dac04d7a3d5b.tar.bz2 sharkey-3a11dba24f839016bad295ce2e68dac04d7a3d5b.zip | |
#7880
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/pages/explore.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/pages/explore.vue b/src/client/pages/explore.vue index 596bc1f0ed..0c29b11b38 100644 --- a/src/client/pages/explore.vue +++ b/src/client/pages/explore.vue @@ -69,7 +69,7 @@ <template #prefix><i class="fas fa-search"></i></template> <template #label>{{ $ts.searchUser }}</template> </MkInput> - <MkRadios v-model="searchScope"> + <MkRadios v-model="searchOrigin"> <option value="local">{{ $ts.local }}</option> <option value="remote">{{ $ts.remote }}</option> <option value="both">{{ $ts.both }}</option> @@ -167,14 +167,14 @@ export default defineComponent({ limit: 10, params: computed(() => (this.searchQuery && this.searchQuery !== '') ? { query: this.searchQuery, - scope: this.searchScope, + origin: this.searchOrigin, } : null) }, tagsLocal: [], tagsRemote: [], stats: null, searchQuery: null, - searchScope: 'both', + searchOrigin: 'both', num: number, }; }, |