Fix bug which prevented loading of test results (#3855)

This commit is contained in:
Oliver 2022-10-26 09:57:22 +11:00 committed by GitHub
parent f3dee187bc
commit fe56a046cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1134,7 +1134,7 @@ function loadBuildOutputTable(build_info, options={}) {
data.push(row);
});
$(table).bootstrapTable('load', row);
$(table).bootstrapTable('load', data);
}
}
);