diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-08-01 18:01:48 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-08-01 18:01:48 +0900 |
| commit | e93c06cd0021bf17a3a92cff7114d4c1ca1714bd (patch) | |
| tree | 04613de28aa0c4e14f8f7b0dbb795c94f35fde57 /src/client/components | |
| parent | Merge branch 'develop' of https://github.com/syuilo/misskey into develop (diff) | |
| download | sharkey-e93c06cd0021bf17a3a92cff7114d4c1ca1714bd.tar.gz sharkey-e93c06cd0021bf17a3a92cff7114d4c1ca1714bd.tar.bz2 sharkey-e93c06cd0021bf17a3a92cff7114d4c1ca1714bd.zip | |
fix appearance
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/token-generate-window.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/components/token-generate-window.vue b/src/client/components/token-generate-window.vue index e58dcbda78..51358d71bc 100644 --- a/src/client/components/token-generate-window.vue +++ b/src/client/components/token-generate-window.vue @@ -2,8 +2,8 @@ <x-window ref="window" :width="400" :height="450" :no-padding="true" @closed="() => { $emit('closed'); destroyDom(); }" :with-ok-button="true" :ok-button-disabled="false" @ok="ok()" :can-close="false"> <template #header>{{ title || $t('generateAccessToken') }}</template> <div class="ugkkpisj"> - <div> - <mk-info warn v-if="information">{{ information }}</mk-info> + <div v-if="information"> + <mk-info warn>{{ information }}</mk-info> </div> <div> <mk-input v-model="name">{{ $t('name') }}</mk-input> |