Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Oct 1, 2024
1 parent cc545f6 commit 4f1c596
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Behaviour.specify("DIV.labelAxis-tree", 'LabelAxis', 0, function(e) {

var values = (e.getAttribute("values") || "").split("/");
function has(v) {
return values.include(v) ? 'checked="checked" ' : "";
return values.includes(v) ? 'checked="checked" ' : "";
}

var labelAxisDataContainer = document.querySelector(".label-axis-data-container");
Expand Down

0 comments on commit 4f1c596

Please sign in to comment.