From 237a2e5b86edab2d09166d3368054be0c3f4239b Mon Sep 17 00:00:00 2001 From: Abe Jellinek Date: Wed, 9 Oct 2024 14:15:34 -0400 Subject: [PATCH] Scaffold: Fix test statuses not persisting --- chrome/content/scaffold/scaffold.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/scaffold/scaffold.js b/chrome/content/scaffold/scaffold.js index e119b6122b..08b79a1948 100644 --- a/chrome/content/scaffold/scaffold.js +++ b/chrome/content/scaffold/scaffold.js @@ -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;