fix(frontend): リセットボタンでCWがリセットされない問題を修正 (#16820)
* fix(frontend): リセットボタンでCWがリセットされない問題を修正 * update changelog
This commit is contained in:
parent
6c190e7a5d
commit
86e4f15e95
|
|
@ -8,6 +8,7 @@
|
||||||
- Enhance: リアクションの受け入れ設定にキャプションを追加 #15921
|
- Enhance: リアクションの受け入れ設定にキャプションを追加 #15921
|
||||||
- Fix: ページの内容がはみ出ることがある問題を修正
|
- Fix: ページの内容がはみ出ることがある問題を修正
|
||||||
- Fix: ヘッダーメニューのチャンネルの新規作成の項目でチャンネル作成ページに飛べない問題を修正 #16816
|
- Fix: ヘッダーメニューのチャンネルの新規作成の項目でチャンネル作成ページに飛べない問題を修正 #16816
|
||||||
|
- Fix: 投稿フォームのリセットボタンで注釈がリセットされない問題を修正
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- Enhance: `clips/my-favorites` APIがページネーションに対応しました
|
- Enhance: `clips/my-favorites` APIがページネーションに対応しました
|
||||||
|
|
|
||||||
|
|
@ -712,6 +712,7 @@ function removeVisibleUser(user) {
|
||||||
|
|
||||||
function clear() {
|
function clear() {
|
||||||
text.value = '';
|
text.value = '';
|
||||||
|
cw.value = null;
|
||||||
files.value = [];
|
files.value = [];
|
||||||
poll.value = null;
|
poll.value = null;
|
||||||
quoteId.value = null;
|
quoteId.value = null;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue