* Derives the document title for a recording, falling back to a stable placeholder.
(recording: GrainRecording)
| 171 | * Derives the document title for a recording, falling back to a stable placeholder. |
| 172 | */ |
| 173 | function recordingTitle(recording: GrainRecording): string { |
| 174 | return recording.title?.trim() || 'Untitled Grain Recording' |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * Extracts participant display names from a recording, dropping blanks. |
no outgoing calls
no test coverage detected