[Client] Resolve #3967
This commit is contained in:
parent
b795379417
commit
4ab96251f5
|
@ -1,6 +1,10 @@
|
||||||
ChangeLog
|
ChangeLog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
unreleased
|
||||||
|
----------
|
||||||
|
* ウィジットの投稿フォームで投稿するとデフォルトの公開範囲が適用されない問題を修正
|
||||||
|
|
||||||
10.78.5
|
10.78.5
|
||||||
----------
|
----------
|
||||||
* アンケートの選択肢にカスタム絵文字を使えるように
|
* アンケートの選択肢にカスタム絵文字を使えるように
|
||||||
|
|
|
@ -179,6 +179,7 @@ export default define({
|
||||||
this.$root.api('notes/create', {
|
this.$root.api('notes/create', {
|
||||||
text: this.text == '' ? undefined : this.text,
|
text: this.text == '' ? undefined : this.text,
|
||||||
fileIds: this.files.length > 0 ? this.files.map(f => f.id) : undefined,
|
fileIds: this.files.length > 0 ? this.files.map(f => f.id) : undefined,
|
||||||
|
visibility: this.$store.state.settings.defaultNoteVisibility
|
||||||
}).then(data => {
|
}).then(data => {
|
||||||
this.clear();
|
this.clear();
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|
Loading…
Reference in New Issue