diff options
| author | futchitwo <74236683+futchitwo@users.noreply.github.com> | 2021-11-18 17:38:58 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-18 17:38:58 +0900 |
| commit | 76a7b5f0678ce22baa68e8bddeb0032bc68eccd4 (patch) | |
| tree | b6818d2ec759abe4b2c4ddef8ac8e59bb8f00c49 | |
| parent | feat(client): アカウント削除に確認ダイアログを出すように (diff) | |
| download | sharkey-76a7b5f0678ce22baa68e8bddeb0032bc68eccd4.tar.gz sharkey-76a7b5f0678ce22baa68e8bddeb0032bc68eccd4.tar.bz2 sharkey-76a7b5f0678ce22baa68e8bddeb0032bc68eccd4.zip | |
fix(client):fix search all users (#7993)
| -rw-r--r-- | packages/client/src/pages/explore.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/pages/explore.vue b/packages/client/src/pages/explore.vue index 7b1fcd0910..92d940144b 100644 --- a/packages/client/src/pages/explore.vue +++ b/packages/client/src/pages/explore.vue @@ -68,9 +68,9 @@ <template #label>{{ $ts.searchUser }}</template> </MkInput> <MkRadios v-model="searchOrigin"> + <option value="combined">{{ $ts.all }}</option> <option value="local">{{ $ts.local }}</option> <option value="remote">{{ $ts.remote }}</option> - <option value="both">{{ $ts.all }}</option> </MkRadios> </div> |