Skip to content

Commit

Permalink
Use !==
Browse files Browse the repository at this point in the history
Co-authored-by: Tim Jacomb <[email protected]>
  • Loading branch information
zbynek and timja authored Jul 29, 2024
1 parent 3c67676 commit 6abf499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion war/src/main/js/components/dropdowns/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function generateDropdown(element, callback, immediate) {
tippy(
element,
Object.assign({}, Templates.dropdown(), {
hideOnClick: element.dataset["hideOnClick"] != "false",
hideOnClick: element.dataset["hideOnClick"] !== "false",
onCreate(instance) {
const onload = () => {
if (instance.loaded) {
Expand Down

0 comments on commit 6abf499

Please sign in to comment.