mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 19:53:08 +02:00
parent
5bea4feac8
commit
a683278fb8
3 changed files with 5 additions and 4 deletions
|
@ -12,6 +12,7 @@ You should also include the user name that made the change.
|
||||||
## 13.x.x (unreleased)
|
## 13.x.x (unreleased)
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
|
- renoteした際の表示を改善
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
- Windows環境でswcを使うと正しくビルドできない問題の修正
|
- Windows環境でswcを使うと正しくビルドできない問題の修正
|
||||||
|
|
|
@ -255,7 +255,7 @@ function renote(viaKeyboard = false) {
|
||||||
text: i18n.ts.inChannelRenote,
|
text: i18n.ts.inChannelRenote,
|
||||||
icon: 'ti ti-repeat',
|
icon: 'ti ti-repeat',
|
||||||
action: () => {
|
action: () => {
|
||||||
os.api('notes/create', {
|
os.apiWithDialog('notes/create', {
|
||||||
renoteId: appearNote.id,
|
renoteId: appearNote.id,
|
||||||
channelId: appearNote.channelId,
|
channelId: appearNote.channelId,
|
||||||
});
|
});
|
||||||
|
@ -276,7 +276,7 @@ function renote(viaKeyboard = false) {
|
||||||
text: i18n.ts.renote,
|
text: i18n.ts.renote,
|
||||||
icon: 'ti ti-repeat',
|
icon: 'ti ti-repeat',
|
||||||
action: () => {
|
action: () => {
|
||||||
os.api('notes/create', {
|
os.apiWithDialog('notes/create', {
|
||||||
renoteId: appearNote.id,
|
renoteId: appearNote.id,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
@ -250,7 +250,7 @@ function renote(viaKeyboard = false) {
|
||||||
text: i18n.ts.inChannelRenote,
|
text: i18n.ts.inChannelRenote,
|
||||||
icon: 'ti ti-repeat',
|
icon: 'ti ti-repeat',
|
||||||
action: () => {
|
action: () => {
|
||||||
os.api('notes/create', {
|
os.apiWithDialog('notes/create', {
|
||||||
renoteId: appearNote.id,
|
renoteId: appearNote.id,
|
||||||
channelId: appearNote.channelId,
|
channelId: appearNote.channelId,
|
||||||
});
|
});
|
||||||
|
@ -271,7 +271,7 @@ function renote(viaKeyboard = false) {
|
||||||
text: i18n.ts.renote,
|
text: i18n.ts.renote,
|
||||||
icon: 'ti ti-repeat',
|
icon: 'ti ti-repeat',
|
||||||
action: () => {
|
action: () => {
|
||||||
os.api('notes/create', {
|
os.apiWithDialog('notes/create', {
|
||||||
renoteId: appearNote.id,
|
renoteId: appearNote.id,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue