Scaffold: Fix test statuses not persisting

This commit is contained in:
Abe Jellinek 2024-10-09 14:15:34 -04:00
parent e1cf60b3cf
commit 237a2e5b86

View file

@ -1794,7 +1794,7 @@ var Scaffold = new function () {
for (let i = 0; i < count; i++) {
let item = listBox.getItemAtIndex(i);
let [, statusCell] = item.children;
oldStatuses[item.dataset.testString] = statusCell.getAttribute('value');
oldStatuses[item.dataset.testString] = statusCell.textContent;
}
let testIndex = 0;