2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 18:45:40 +00:00

Fix for build output table (#6549)

- Correctly display passed test count
This commit is contained in:
Oliver
2024-02-22 11:05:46 +11:00
committed by GitHub
parent 6e713b15ae
commit fdcbb68616

View File

@ -1259,7 +1259,7 @@ function loadBuildOutputTable(build_info, options={}) {
let final_result = false;
row.tests.forEach(function(result) {
if (result.key == test.key) {
if (result.template == test.pk) {
final_result = result.result;
}
});