2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 04:55:44 +00:00

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

View File

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