This commit is contained in:
tamaina
2021-02-13 03:05:40 +09:00
parent 34ad95befa
commit 11288fd5c8
2 changed files with 20 additions and 11 deletions

View File

@@ -116,6 +116,11 @@ export default defineComponent({
type: Boolean,
required: false
},
visibleUsers: {
type: Array,
required: false,
default: () => []
},
initialNote: {
type: Object,
required: false
@@ -149,7 +154,6 @@ export default defineComponent({
cw: null,
localOnly: this.$store.state.rememberNoteVisibility ? this.$store.state.localOnly : this.$store.state.defaultNoteLocalOnly,
visibility: (this.$store.state.rememberNoteVisibility ? this.$store.state.visibility : this.$store.state.defaultNoteVisibility) as typeof noteVisibilities[number],
visibleUsers: [],
autocomplete: null,
draghover: false,
quoteId: null,