summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/views
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-12-29 02:55:46 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-12-29 02:55:46 +0900
commita3493c4f07240b1957cb4fe8c17eb79747846bc6 (patch)
tree0c97fc6a7e16401a05a3b79dede4893242fadc73 /src/client/app/mobile/views
parentMake autoAcceptFollowed default (diff)
downloadmisskey-a3493c4f07240b1957cb4fe8c17eb79747846bc6.tar.gz
misskey-a3493c4f07240b1957cb4fe8c17eb79747846bc6.tar.bz2
misskey-a3493c4f07240b1957cb4fe8c17eb79747846bc6.zip
Privateの公開範囲を廃止
Diffstat (limited to 'src/client/app/mobile/views')
-rw-r--r--src/client/app/mobile/views/components/note-detail.vue3
-rw-r--r--src/client/app/mobile/views/components/post-form.vue5
2 files changed, 3 insertions, 5 deletions
diff --git a/src/client/app/mobile/views/components/note-detail.vue b/src/client/app/mobile/views/components/note-detail.vue
index 61274a246a..72f522bbca 100644
--- a/src/client/app/mobile/views/components/note-detail.vue
+++ b/src/client/app/mobile/views/components/note-detail.vue
@@ -54,8 +54,7 @@
<span class="visibility" v-if="appearNote.visibility != 'public'">
<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"/>
+ <fa v-if="appearNote.visibility == 'specified'" icon="lock"/>
</span>
<span class="localOnly" v-if="appearNote.localOnly == true"><fa icon="heart"/></span>
</div>
diff --git a/src/client/app/mobile/views/components/post-form.vue b/src/client/app/mobile/views/components/post-form.vue
index 282ecc387c..599547858d 100644
--- a/src/client/app/mobile/views/components/post-form.vue
+++ b/src/client/app/mobile/views/components/post-form.vue
@@ -41,8 +41,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="envelope"/></span>
- <span v-if="visibility === 'private'"><fa icon="lock"/></span>
+ <span v-if="visibility === 'specified'"><fa icon="lock"/></span>
</button>
</footer>
<input ref="file" class="file" type="file" multiple="multiple" @change="onChangeFile"/>
@@ -202,7 +201,7 @@ export default Vue.extend({
this.applyVisibility(this.$store.state.settings.rememberNoteVisibility ? (this.$store.state.device.visibility || this.$store.state.settings.defaultNoteVisibility) : this.$store.state.settings.defaultNoteVisibility);
// 公開以外へのリプライ時は元の公開範囲を引き継ぐ
- if (this.reply && ['home', 'followers', 'specified', 'private'].includes(this.reply.visibility)) {
+ if (this.reply && ['home', 'followers', 'specified'].includes(this.reply.visibility)) {
this.visibility = this.reply.visibility;
}