diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-10-14 02:00:29 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-10-14 02:00:29 +0900 |
| commit | 488fe2e7bd8cf4ea8d6938a4a68ef218fd2b8ca7 (patch) | |
| tree | 0010fa8c9108ea7b6f0cfcc89308aab4fdc8edf1 /src/client/app/common/views/components | |
| parent | Update https-proxy-agent など (#5497) (diff) | |
| download | sharkey-488fe2e7bd8cf4ea8d6938a4a68ef218fd2b8ca7.tar.gz sharkey-488fe2e7bd8cf4ea8d6938a4a68ef218fd2b8ca7.tar.bz2 sharkey-488fe2e7bd8cf4ea8d6938a4a68ef218fd2b8ca7.zip | |
みつけるに連合分を表示するように (#5490)
* みつける Fediverse
* discovered
Diffstat (limited to 'src/client/app/common/views/components')
| -rw-r--r-- | src/client/app/common/views/components/user-list.vue | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/client/app/common/views/components/user-list.vue b/src/client/app/common/views/components/user-list.vue index 9cf6971338..4ba4e67e54 100644 --- a/src/client/app/common/views/components/user-list.vue +++ b/src/client/app/common/views/components/user-list.vue @@ -1,5 +1,5 @@ <template> -<ui-container :body-togglable="true"> +<ui-container :body-togglable="true" :expanded="expanded"> <template #header><slot></slot></template> <mk-error v-if="error" @retry="init()"/> @@ -50,7 +50,11 @@ export default Vue.extend({ iconOnly: { type: Boolean, default: false - } + }, + expanded: { + type: Boolean, + default: true + }, }, computed: { |