( note: string, maxWidth: number, )
| 229 | * Formats release notes for display, with smart truncation |
| 230 | */ |
| 231 | export function formatReleaseNoteForDisplay( |
| 232 | note: string, |
| 233 | maxWidth: number, |
| 234 | ): string { |
| 235 | // Simply truncate at the max width, same as Recent Activity descriptions |
| 236 | return truncate(note, maxWidth) |
| 237 | } |
| 238 | |
| 239 | /** |
| 240 | * Gets the common logo display data used by both LogoV2 and CondensedLogo |
nothing calls this directly
no test coverage detected