diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-08 04:36:23 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-08 04:36:23 +0900 |
| commit | 7f6a3ec828d4bad92defedc8a8c5405717fe8a5f (patch) | |
| tree | e126a5f7769d262d5382fce5bdf40e0ebffc2b69 | |
| parent | Refactoring: Move chart dir into services dir (diff) | |
| download | sharkey-7f6a3ec828d4bad92defedc8a8c5405717fe8a5f.tar.gz sharkey-7f6a3ec828d4bad92defedc8a8c5405717fe8a5f.tar.bz2 sharkey-7f6a3ec828d4bad92defedc8a8c5405717fe8a5f.zip | |
:art:
| -rw-r--r-- | src/client/app/admin/views/federation.vue | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/client/app/admin/views/federation.vue b/src/client/app/admin/views/federation.vue index 80b9e9541f..dd8567243a 100644 --- a/src/client/app/admin/views/federation.vue +++ b/src/client/app/admin/views/federation.vue @@ -40,10 +40,11 @@ <span>{{ $t('latest-request-received-at') }}</span> </ui-input> <ui-switch v-model="instance.isBlocked" @change="updateInstance()">{{ $t('block') }}</ui-switch> - <section> - <ui-button @click="removeAllFollowing()"><fa :icon="faMinusCircle"/> {{ $t('remove-all-following') }}</ui-button> + <details> + <summary>{{ $t('remove-all-following') }}</summary> + <ui-button @click="removeAllFollowing()" style="margin-top: 16px;"><fa :icon="faMinusCircle"/> {{ $t('remove-all-following') }}</ui-button> <ui-info warn>{{ $t('remove-all-following-info', { host: instance.host }) }}</ui-info> - </section> + </details> </div> </section> </ui-card> |