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

Unified Diff: appengine/chromium_cq_status/js/recent.js

Issue 2040253002: Remove [timeline] from the list of raw CQ events (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 6 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/chromium_cq_status/js/recent.js
diff --git a/appengine/chromium_cq_status/js/recent.js b/appengine/chromium_cq_status/js/recent.js
index 9e235abf270129cb8bd8194ff7679efb376af17b..c238bffe572417fd8a27333615b036455114f42a 100644
--- a/appengine/chromium_cq_status/js/recent.js
+++ b/appengine/chromium_cq_status/js/recent.js
@@ -138,11 +138,6 @@ function newDetailLinks(record) {
span.appendChild(newElement('span', ' '));
span.appendChild(statusLink);
}
- var timelineLink = newTimelineLink(record.fields);
- if (timelineLink) {
- span.appendChild(newElement('span', ' '));
- span.appendChild(timelineLink);
- }
var reviewLink = newReviewLink(record.fields);
if (reviewLink) {
span.appendChild(newElement('span', ' '));
@@ -179,13 +174,6 @@ function newStatusLink(fields) {
return newLink('[status]', logServer + '/patch-status/' + fields.issue + '/' + fields.patchset);
}
-function newTimelineLink(fields) {
- if (!fields.issue || !fields.patchset) {
- return null;
- }
- return newLink('[timeline]', logServer + '/patch-timeline/' + fields.issue + '/' + fields.patchset);
-}
-
function newReviewLink(fields) {
if (!fields.issue) {
return null;
« 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