Skip to content
Snippets Groups Projects
Commit 4b75c687 authored by syuilo's avatar syuilo
Browse files

fix(client): The … button on notes does nothing when not logged in

Fix #9659
parent 3bf775c9
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,7 @@ You should also include the user name that made the change. ...@@ -23,6 +23,7 @@ You should also include the user name that made the change.
### Bugfixes ### Bugfixes
- playを削除する手段がなかったのを修正 - playを削除する手段がなかったのを修正
- The … button on notes does nothing when not logged in
## 13.0.0 (2023/01/16) ## 13.0.0 (2023/01/16)
......
...@@ -187,7 +187,7 @@ export function getNoteMenu(props: { ...@@ -187,7 +187,7 @@ export function getNoteMenu(props: {
}); });
} }
function notedetails(): void { function openDetail(): void {
os.pageWindow(`/notes/${appearNote.id}`); os.pageWindow(`/notes/${appearNote.id}`);
} }
...@@ -225,7 +225,7 @@ export function getNoteMenu(props: { ...@@ -225,7 +225,7 @@ export function getNoteMenu(props: {
), { ), {
icon: 'ti ti-info-circle', icon: 'ti ti-info-circle',
text: i18n.ts.details, text: i18n.ts.details,
action: notedetails, action: openDetail,
}, { }, {
icon: 'ti ti-users', icon: 'ti ti-users',
text: i18n.ts.reactions, text: i18n.ts.reactions,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment