Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Unified Diff: appengine/findit/templates/build_failure.html

Issue 1834703004: [Findit] Fix undefined in result page. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/templates/build_failure.html
diff --git a/appengine/findit/templates/build_failure.html b/appengine/findit/templates/build_failure.html
index 071736699e484774da34b32d98e9d3679f4c0e4e..391eb01618d9a7f948727ac7e62edd703478289e 100644
--- a/appengine/findit/templates/build_failure.html
+++ b/appengine/findit/templates/build_failure.html
@@ -342,8 +342,8 @@
var hasTryJobData = false;
$.each(data, function(key, value) {
tableString += '<tr>';
- tableString += '<td>' + value.step + '</td>';
- tableString += '<td><li><div title="' + value.test + '" class="truncate">' + value.test + '</div></li></td>';
+ tableString += '<td>' + value.step_name + '</td>';
+ tableString += '<td><li><div title="' + value.test_name + '" class="truncate">' + value.test_name + '</div></li></td>';
if (value.try_job_url) {
tableString += '<td><a href="' + value.try_job_url + '">' + value.try_job_build_number + '</a></td>';
} else {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698