fix(client): fix lint issues in scripts (#8621)
This commit is contained in:
@@ -24,7 +24,7 @@ export const getNoteSummary = (note: misskey.entities.Note): string => {
|
||||
}
|
||||
|
||||
// ファイルが添付されているとき
|
||||
if ((note.files || []).length != 0) {
|
||||
if ((note.files || []).length !== 0) {
|
||||
summary += ` (${i18n.t('withNFiles', { n: note.files.length })})`;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user