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

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

Issue 2773023004: DevTools: polish what's new - add date to title (Closed)
Patch Set: Created 3 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
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 c2af2ce959d796e125ddb589f72ee189b70b1963..4e7f5e210743b15ce64733fc97df39f68ea0a2bf 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('New since the last update');
+ topSection.textContent = Common.UIString(`Highlights from ${Help.latestReleaseNote().date} update`);
this.contentElement.appendChild(releaseNoteElement);
}

Powered by Google App Engine
This is Rietveld 408576698