File tree 3 files changed +5
-4
lines changed
packages/frontend/src/components
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ You should also include the user name that made the change.
12
12
## 13.x.x (unreleased)
13
13
14
14
### Improvements
15
+ - renoteした際の表示を改善
15
16
16
17
### Bugfixes
17
18
- Windows環境でswcを使うと正しくビルドできない問題の修正
Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ function renote(viaKeyboard = false) {
255
255
text: i18n .ts .inChannelRenote ,
256
256
icon: ' ti ti-repeat' ,
257
257
action : () => {
258
- os .api (' notes/create' , {
258
+ os .apiWithDialog (' notes/create' , {
259
259
renoteId: appearNote .id ,
260
260
channelId: appearNote .channelId ,
261
261
});
@@ -276,7 +276,7 @@ function renote(viaKeyboard = false) {
276
276
text: i18n .ts .renote ,
277
277
icon: ' ti ti-repeat' ,
278
278
action : () => {
279
- os .api (' notes/create' , {
279
+ os .apiWithDialog (' notes/create' , {
280
280
renoteId: appearNote .id ,
281
281
});
282
282
},
Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ function renote(viaKeyboard = false) {
250
250
text: i18n .ts .inChannelRenote ,
251
251
icon: ' ti ti-repeat' ,
252
252
action : () => {
253
- os .api (' notes/create' , {
253
+ os .apiWithDialog (' notes/create' , {
254
254
renoteId: appearNote .id ,
255
255
channelId: appearNote .channelId ,
256
256
});
@@ -271,7 +271,7 @@ function renote(viaKeyboard = false) {
271
271
text: i18n .ts .renote ,
272
272
icon: ' ti ti-repeat' ,
273
273
action : () => {
274
- os .api (' notes/create' , {
274
+ os .apiWithDialog (' notes/create' , {
275
275
renoteId: appearNote .id ,
276
276
});
277
277
},
You can’t perform that action at this time.
0 commit comments