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