File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
packages/frontend/src/pages/messaging Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ Cherrypick 4.11.1
29
29
- Fix: リモートから添付されてきたクリップURLにホスト情報があると二重になる不具合を修正 [ #460 ] ( https://github.com/yojo-art/cherrypick/pull/460 )
30
30
- Fix: リモートクリップ説明文がローカル仕様になってる問題の修正 [ #466 ] ( https://github.com/yojo-art/cherrypick/pull/466 )
31
31
- Fix: ユーザー概要の「ファイル」の挙動を通常の添付ファイルに合わせる [ #472 ] ( https://github.com/yojo-art/cherrypick/pull/472 )
32
+ - Fix: チャットの絵文字ピッカーが正しく入力できないことがあるのを修正
32
33
33
34
### Server
34
35
- Enhance: リモートユーザーの` /api/clips/show ` と` /api/users/clips ` の応答にemojisを追加 [ #466 ] ( https://github.com/yojo-art/cherrypick/pull/466 )
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ function saveDraft() {
200
200
201
201
drafts [draftKey .value ] = {
202
202
updatedAt: new Date (),
203
- // eslint-disable-next-line id-denylist
203
+
204
204
data: {
205
205
text: text .value ,
206
206
file: file .value ,
@@ -222,7 +222,7 @@ async function insertEmoji(ev: MouseEvent) {
222
222
emojiPicker .show (
223
223
ev .currentTarget ?? ev .target ,
224
224
emoji => {
225
- insertTextAtCursor ( textEl .value , emoji ) ;
225
+ text .value += emoji ;
226
226
},
227
227
() => {
228
228
focus ();
You can’t perform that action at this time.
0 commit comments