style: lint

This commit is contained in:
手瓜一十雪
2025-02-02 20:17:28 +08:00
parent d626f872e6
commit ac193cc94a
135 changed files with 529 additions and 529 deletions

View File

@@ -303,7 +303,7 @@ function textElementToText(textElement: any): string {
const originalContentLines = textElement.content.split('\n');
return `${originalContentLines[0]}${originalContentLines.length > 1 ? ' ...' : ''}`;
} else if (textElement.atType === NTMsgAtType.ATTYPEALL) {
return `@全体成员`;
return '@全体成员';
} else if (textElement.atType === NTMsgAtType.ATTYPEONE) {
return `${textElement.content} (${textElement.atUid})`;
}