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

Unified Diff: third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteView.js

Issue 2813303004: DevTools: fix date with version, image for What's New (Closed)
Patch Set: use header string Created 3 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteView.js b/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteView.js
index 4e7f5e210743b15ce64733fc97df39f68ea0a2bf..a8ab8485f0e3f1622b82d4e720c288c9abeced62 100644
--- a/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteView.js
+++ b/third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteView.js
@@ -8,7 +8,7 @@ Help.ReleaseNoteView = class extends UI.VBox {
this.registerRequiredCSS('help/releaseNote.css');
var releaseNoteElement = this._createReleaseNoteElement(Help.latestReleaseNote());
var topSection = this.contentElement.createChild('div', 'release-note-top-section');
- topSection.textContent = Common.UIString(`Highlights from ${Help.latestReleaseNote().date} update`);
+ topSection.textContent = Common.UIString(Help.latestReleaseNote().header);
this.contentElement.appendChild(releaseNoteElement);
}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698