We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4768acb commit aa387d4Copy full SHA for aa387d4
src/components/ThePostWrite.vue
@@ -74,7 +74,11 @@
74
<div class="write__input write__content-checkbox">
75
<label v-if="boardId===7" class="checkbox">
76
{{ $t('is-anonymous') }}
77
- <input v-model="isAnonymous" type="checkbox">
+ <input
78
+ v-model="isAnonymous"
79
+ type="checkbox"
80
+ :disabled="editMode"
81
+ >
82
</label>
83
84
<label class="checkbox">
@@ -235,6 +239,7 @@ export default {
235
239
this.title = this.post.title
236
240
this.isSocial = this.post.is_content_social
237
241
this.isSexual = this.post.is_content_sexual
242
+ this.isAnonymous = this.post.name_type === 2
238
243
this.loaded = false
244
245
this.$nextTick(() => {
0 commit comments