${this.playlists.length > 0
? html`
${this.playlists.map(
(p) => html`
this.handleSelectPlaylist(p.ID)}
>
${p.Name}
`,
)}
`
: nothing}
New Playlist
`;
}
private renderCreateForm() {
const canCreate = this.newPlaylistName.trim().length > 0;
return html`