Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mawinter69 committed Aug 6, 2023
1 parent 79aa919 commit 2e2e18a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions war/src/main/js/components/dropdowns/hetero-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import tippy from "tippy.js";

function init() {
generateButtons();
//generateHandles();
generateHandles();
}

function generateHandles() {
Expand Down Expand Up @@ -242,7 +242,7 @@ function generateDropDown(button, callback) {
callback(instance);
button.dataset.expanded = "true";
},
onHide(instance) {
onHide() {
button.dataset.expanded = "false";
},
}),
Expand Down

0 comments on commit 2e2e18a

Please sign in to comment.