Skip to content
Snippets Groups Projects
Commit bcd35b87 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Bugfix: Fixing wrong loop index

parent 65ffb757
No related branches found
No related tags found
No related merge requests found
......@@ -217,7 +217,7 @@
var table = ["<table border=\"1\">",headingLine];
for(var row in data)
{
var aResult = data[i];
var aResult = data[row];
var allValues = JSON.parse(aResult["allValues"]);
if(aResult["validTimeStart"] == null)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment