diff --git a/CHANGELOG.md b/CHANGELOG.md
index ef8238ab23c97322bdf45028f055267d467ce4e9..26632b83995de2f93fc5eb9942741cfc3f188b6f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -23,6 +23,7 @@ You should also include the user name that made the change.
 
 ### Bugfixes
 - playを削除する手段がなかったのを修正
+- The … button on notes does nothing when not logged in
 
 ## 13.0.0 (2023/01/16)
 
diff --git a/packages/frontend/src/scripts/get-note-menu.ts b/packages/frontend/src/scripts/get-note-menu.ts
index da7f2a5c20bcdf59a7d129dccbe6bfb629126686..b5d2251d28bc66985d6d801c2a0a0ef75dc46295 100644
--- a/packages/frontend/src/scripts/get-note-menu.ts
+++ b/packages/frontend/src/scripts/get-note-menu.ts
@@ -187,7 +187,7 @@ export function getNoteMenu(props: {
 		});
 	}
 
-	function notedetails(): void {
+	function openDetail(): void {
 		os.pageWindow(`/notes/${appearNote.id}`);
 	}
 
@@ -225,7 +225,7 @@ export function getNoteMenu(props: {
 			), {
 				icon: 'ti ti-info-circle',
 				text: i18n.ts.details,
-				action: notedetails,
+				action: openDetail,
 			}, {
 				icon: 'ti ti-users',
 				text: i18n.ts.reactions,