Skip to content

Commit

Permalink
Popup display song id
Browse files Browse the repository at this point in the history
  • Loading branch information
mantou132 committed Aug 23, 2020
1 parent e96af5f commit f8e4edc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/popup/elements/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ export class SongList extends GemElement {
${store.list.map(
(song) =>
html`
<app-track-item @click=${() => this.select(song.id)} .song=${song}></app-track-item>
<app-track-item
@click=${() => this.select(song.id)}
.song=${song}
title="id: ${song.id}"
></app-track-item>
`,
)}
`;
Expand Down

0 comments on commit f8e4edc

Please sign in to comment.