Skip to content

Commit

Permalink
Fix initialization of the project
Browse files Browse the repository at this point in the history
  • Loading branch information
rexim committed Jun 15, 2021
1 parent 1136788 commit 78705d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ window.onload = function () {
if (filterSelectorEntry === null) {
throw new Error('Could not find "filter-selector-entry"');
}
var imageSelectorEntry = document.getElementById('filter-selector-entry');
var imageSelectorEntry = document.getElementById('image-selector-entry');
if (imageSelectorEntry === null) {
throw new Error('Could not find "image-selector-entry"');
}
Expand Down
2 changes: 1 addition & 1 deletion ts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ window.onload = () => {
if (filterSelectorEntry === null) {
throw new Error('Could not find "filter-selector-entry"');
}
const imageSelectorEntry = document.getElementById('filter-selector-entry');
const imageSelectorEntry = document.getElementById('image-selector-entry');
if (imageSelectorEntry === null) {
throw new Error('Could not find "image-selector-entry"');
}
Expand Down

0 comments on commit 78705d8

Please sign in to comment.