(userId: string)
| 261 | } |
| 262 | |
| 263 | const parts: string[] = []; |
| 264 | const displayName = (cachedUser.name || "").trim(); |
| 265 | const usernameText = cachedUser.username || ""; |
| 266 | |
| 267 | if (displayName && displayName !== userId && displayName !== usernameText) { |
| 268 | parts.push(htmlEscape(displayName)); |
no test coverage detected