Skip to content

Commit 92a47d2

Browse files
committed
fixes
1 parent 086e540 commit 92a47d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sparqlunicorn_ontdoc/resources/html/default/js/startscripts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1643,7 +1643,7 @@ function rangestoLegendHTML(rangesByAttribute){
16431643
for(rang in rangesByAttribute){
16441644
console.log(rang)
16451645
result+="<tr><td><span style=\"width: 20px;height: 20px;border: 1px solid rgba(0, 0, 0, .2);background-color:"+rangesByAttribute[rang]["color"]+"\"></span>"
1646-
for(therange in rangesByAttribute[rang]){
1646+
for(therange of rangesByAttribute[rang]){
16471647
if("min" in therange && "max" in therange){
16481648
result+=therange["min"]+" - "+therange["max"]
16491649
}else{

0 commit comments

Comments
 (0)