diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-01-12 09:40:53 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-01-12 09:40:53 +0900 |
| commit | 0757f67bde2dd5797b422cd3108db0d0b6e0f9e0 (patch) | |
| tree | 4afda42cd30748d8997e1ccea0720f3ea416928e /src/client/app/desktop/views/components | |
| parent | Revert "[Client] Renote数の表示を廃止" (diff) | |
| download | misskey-0757f67bde2dd5797b422cd3108db0d0b6e0f9e0.tar.gz misskey-0757f67bde2dd5797b422cd3108db0d0b6e0f9e0.tar.bz2 misskey-0757f67bde2dd5797b422cd3108db0d0b6e0f9e0.zip | |
[Client] specifiedのアイコンを戻した
Diffstat (limited to 'src/client/app/desktop/views/components')
| -rw-r--r-- | src/client/app/desktop/views/components/note-detail.vue | 1 | ||||
| -rw-r--r-- | src/client/app/desktop/views/components/post-form.vue | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/client/app/desktop/views/components/note-detail.vue b/src/client/app/desktop/views/components/note-detail.vue index 05dd10fe05..1593f7d16b 100644 --- a/src/client/app/desktop/views/components/note-detail.vue +++ b/src/client/app/desktop/views/components/note-detail.vue @@ -33,7 +33,6 @@ <fa v-if="appearNote.visibility == 'home'" icon="home"/> <fa v-if="appearNote.visibility == 'followers'" icon="unlock"/> <fa v-if="appearNote.visibility == 'specified'" icon="envelope"/> - <fa v-if="appearNote.visibility == 'private'" icon="lock"/> </span> <span class="localOnly" v-if="appearNote.localOnly == true"><fa icon="heart"/></span> </div> diff --git a/src/client/app/desktop/views/components/post-form.vue b/src/client/app/desktop/views/components/post-form.vue index 27e487946b..781ead17f9 100644 --- a/src/client/app/desktop/views/components/post-form.vue +++ b/src/client/app/desktop/views/components/post-form.vue @@ -50,7 +50,7 @@ <span v-if="visibility === 'public'"><fa icon="globe"/></span> <span v-if="visibility === 'home'"><fa icon="home"/></span> <span v-if="visibility === 'followers'"><fa icon="unlock"/></span> - <span v-if="visibility === 'specified'"><fa icon="lock"/></span> + <span v-if="visibility === 'specified'"><fa icon="envelope"/></span> </button> <p class="text-count" :class="{ over: trimmedLength(text) > maxNoteTextLength }">{{ maxNoteTextLength - trimmedLength(text) }}</p> <ui-button primary :wait="posting" class="submit" :disabled="!canPost" @click="post"> |