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

Unified Diff: masters/master.tryserver.chromium.perf/templates/build.html

Issue 1885033002: BuildBot: Add anchors for unbound aliases. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 8 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
Index: masters/master.tryserver.chromium.perf/templates/build.html
diff --git a/masters/master.tryserver.chromium.perf/templates/build.html b/masters/master.tryserver.chromium.perf/templates/build.html
index c7213316d1dfc2a26268434994f9be6b75416637..d17413555d9c84cc2fc2c50f3b47a3277f11e675 100644
--- a/masters/master.tryserver.chromium.perf/templates/build.html
+++ b/masters/master.tryserver.chromium.perf/templates/build.html
@@ -146,7 +146,11 @@ Build #{{ b.getNumber() }}
{% set item_class = cycler('alt', '') %}
{% for l in s.logs %}
<li class="{{ item_class.next() }}">
- <a href="{{ l.link }}">{{ l.name }}</a>
+ {% if l.link %}
+ <a href="{{ l.link }}">{{ l.name }}</a>
+ {% else %}
+ <span>{{ l.name }}</span>
+ {% endif %}
<a href="https://storage.cloud.google.com/chrome-build-logs-private/logs/{{
b.getProperty('mastername') }}/{{ b.getBuilder().getName()
}}/{{ '%.7d' % b.getNumber() }}/{{ s.name|replace('/', '_') }}.{{

Powered by Google App Engine
This is Rietveld 408576698