Skip to content

Commit

Permalink
Fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ebidel committed Apr 13, 2017
1 parent f6b5a72 commit c46329d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lighthouse-core/report/v2/renderer/report-renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,12 @@ class ReportRenderer {
* @return {!Element}
*/
_renderReport(report) {
const container = this._dom._createElement('div', 'lighthouse-content');
const element = container.appendChild(this._createElement('div', 'lh-report'));
const container = this._dom.createElement('div', 'lh-content');
const element = container.appendChild(this._dom.createElement('div', 'lh-report'));

element.appendChild(this._renderReportHeader(report));

const categories = element.appendChild(this._createElement('div', 'lh-categories'));
const categories = element.appendChild(this._dom.createElement('div', 'lh-categories'));
for (const category of report.reportCategories) {
categories.appendChild(this._renderCategory(category));
}
Expand Down

0 comments on commit c46329d

Please sign in to comment.