Skip to content

Commit

Permalink
Change details table headings.
Browse files Browse the repository at this point in the history
  • Loading branch information
kdzwinel committed Oct 17, 2017
1 parent f4a7989 commit db23054
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lighthouse-core/audits/seo/anchor-text.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ class AnchorText extends Audit {
});

const headings = [
{key: 'href', itemType: 'url', text: 'URL'},
{key: 'text', itemType: 'text', text: 'Text'},
{key: 'href', itemType: 'url', text: 'Link destination'},
{key: 'text', itemType: 'text', text: 'Link Text'},
];

const details = Audit.makeTableDetails(headings, failingAnchors);
Expand Down
1 change: 0 additions & 1 deletion lighthouse-core/gather/gatherers/seo/crawlable-anchors.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const Gatherer = require('../gatherer');
const DOMHelpers = require('../../../lib/dom-helpers.js');

class CrawlableAnchors extends Gatherer {

/**
* @param {{driver: !Object}} options Run options
* @return {!Promise<!Array<{href: string, text: string}>>}
Expand Down

0 comments on commit db23054

Please sign in to comment.