Skip to content

Commit c25ef26

Browse files
authored
Fix checkbox doing nothing in image gallery. (#21)
1 parent 784454d commit c25ef26

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/gallery_ui.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ export class GalleryUi extends LitElement {
197197
${asset.sourceName}
198198
<span class="countBubble">${asset.count}</span>
199199
<div class="linkOverlay"><mwc-icon>open_in_new</mwc-icon></div>
200-
<mwc-checkbox ?checked=${checked}></mwc-checkbox>
200+
<mwc-checkbox ?checked=${checked} @click=${onCheckboxClick}>
201+
</mwc-checkbox>
201202
</a>`;
202203
}
203204
return html`

0 commit comments

Comments
 (0)