diff --git a/CALCKEY.md b/CALCKEY.md index 843dbffff..333027918 100644 --- a/CALCKEY.md +++ b/CALCKEY.md @@ -11,7 +11,6 @@ - Fully revamp non-logged-in screen - Personal notes for all accounts - Admin custom CSS -- Improve notifications (content is too verbose) - Non-nyaify cat mode - Timeline filters - "Bubble" timeline @@ -25,6 +24,7 @@ - Rosé Pine by default (+ non-themable elements made Rosé Pine) - Better sidebar/navbar - Mark as read from notifications widget +- Less cluttered notification summary - Better welcome screen (not logged in) - Ability to turn off "Connection lost" message - Spinner instead of "Loading..." diff --git a/packages/backend/src/misc/get-note-summary.ts b/packages/backend/src/misc/get-note-summary.ts index 3f35ccee8..ddcfade42 100644 --- a/packages/backend/src/misc/get-note-summary.ts +++ b/packages/backend/src/misc/get-note-summary.ts @@ -32,6 +32,7 @@ export const getNoteSummary = (note: Packed<'Note'>): string => { summary += ` (📊)`; } + /* // 返信のとき if (note.replyId) { if (note.reply) { @@ -49,6 +50,7 @@ export const getNoteSummary = (note: Packed<'Note'>): string => { summary += '\n\nRN: ...'; } } + */ return summary.trim(); }; diff --git a/packages/client/src/ui/classic.sidebar.vue b/packages/client/src/ui/classic.sidebar.vue index 172401f42..e688c74f4 100644 --- a/packages/client/src/ui/classic.sidebar.vue +++ b/packages/client/src/ui/classic.sidebar.vue @@ -32,7 +32,7 @@