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

Unified Diff: appengine/chromium_rietveld/new_static/components/cr-issue-meta.html

Issue 773083004: Rietveld: Display the remote tracked ref in both old and new UIs (Closed) Base URL: https://chromium.googlesource.com/infra/infra@master
Patch Set: Remove staging code Created 6 years 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: appengine/chromium_rietveld/new_static/components/cr-issue-meta.html
diff --git a/appengine/chromium_rietveld/new_static/components/cr-issue-meta.html b/appengine/chromium_rietveld/new_static/components/cr-issue-meta.html
index 3a7132a19e5c9b377154ebe681b050a0acd78c0d..e37280ccdb3b78555ec35abb02355385c4a8eb90 100644
--- a/appengine/chromium_rietveld/new_static/components/cr-issue-meta.html
+++ b/appengine/chromium_rietveld/new_static/components/cr-issue-meta.html
@@ -23,7 +23,8 @@ found in the LICENSE file. -->
display: table-cell;
}
- .issue-base-url {
+ .issue-base-url,
+ .issue-remote-branch {
word-break: break-word;
}
@@ -88,6 +89,12 @@ found in the LICENSE file. -->
{{ issue.baseUrl }}
</div>
</div>
+ <template if="{{ issue.remoteBranch }}">
+ <div class="issue-remote-branch issue-meta-item">
+ <div class="issue-meta-type">Remote branch</div>
+ <div class="issue-meta-value">{{ issue.remoteBranch }}</div>
+ </div>
+ </template>
<template if="{{ issue.private }}">
<div class="issue-private issue-meta-item">
<div class="issue-meta-type">Private</div>

Powered by Google App Engine
This is Rietveld 408576698