Skip to content

Commit

Permalink
fix(frontend): ファイルの添付可能数を超えたらノートボタンを押せないように (misskey-dev#15126)
Browse files Browse the repository at this point in the history
* fix(frontend): ファイルの添付可能数を超えたらノートボタンを押せないように

* Update Changelog

* Update MkPostForm.vue
  • Loading branch information
kakkokari-gtyih authored and Ruruke committed Jan 4, 2025
1 parent 798b75b commit a06e86f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
- Fix: `Ui:C:select`で値の変更が画面に反映されない問題を修正
- Fix: MiAuth認可画面で、認可処理に失敗した場合でもコールバックURLに遷移してしまう問題を修正
(Cherry-picked from https://github.com/TeamNijimiss/misskey/commit/800359623e41a662551d774de15b0437b6849bb4)
- Fix: ノート作成画面でファイルの添付可能個数を超えてもノートボタンが押せていた問題を修正

### Server
- Fix: ユーザーのプロフィール画面をアドレス入力などで直接表示した際に概要タブの描画に失敗する問題の修正( #15032 )
Expand Down
1 change: 0 additions & 1 deletion packages/frontend/src/components/MkPostForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,6 @@ const canPost = computed((): boolean => {
) &&
(textLength.value <= maxTextLength.value) &&
(files.value.length <= 16) &&
(cwTextLength.value <= maxCwTextLength.value) &&
(!poll.value || poll.value.choices.length >= 2);
});

Expand Down

0 comments on commit a06e86f

Please sign in to comment.