Skip to content

Commit

Permalink
v2.1.7 (#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
latonv authored Mar 6, 2024
1 parent 9fc7166 commit 7cff6c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "The Internet Archive Collection Browser.",
"license": "AGPL-3.0-only",
"author": "Internet Archive",
"version": "2.1.6",
"version": "2.1.7",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/collection-browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1758,7 +1758,7 @@ export class CollectionBrowser

cellForIndex(index: number): TemplateResult | undefined {
const model = this.tileModelAtCellIndex(index);
if (!model) return this.placeholderCellTemplate;
if (!model) return undefined;

return html`
<tile-dispatcher
Expand Down

0 comments on commit 7cff6c9

Please sign in to comment.