mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
fix: summary if 1 attachment
This commit is contained in:
parent
141fbc7b67
commit
04d4d21f74
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ export const getNoteSummary = (note: Packed<"Note">): string => {
|
|||
// ファイルが添付されているとき
|
||||
if ((note.files || []).length !== 0) {
|
||||
const len = note.files?.length;
|
||||
summary += ` 📎 (${len !== 1 ? len : ""})`;
|
||||
summary += ` 📎${len !== 1 ? ` (${len})` : ""}`;
|
||||
}
|
||||
|
||||
// 投票が添付されているとき
|
||||
|
|
|
@ -24,7 +24,7 @@ export const getNoteSummary = (note: misskey.entities.Note): string => {
|
|||
// ファイルが添付されているとき
|
||||
if ((note.files || []).length !== 0) {
|
||||
const len = note.files?.length;
|
||||
summary += ` 📎 (${len !== 1 ? len : ""})`;
|
||||
summary += ` 📎${len !== 1 ? ` (${len})` : ""}`;
|
||||
}
|
||||
|
||||
// 投票が添付されているとき
|
||||
|
|
Loading…
Reference in a new issue