Skip to content

Commit

Permalink
report: don't use unnessary monospace (#9626)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Nov 6, 2019
1 parent d7c381e commit c660975
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lighthouse-core/audits/deprecations.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Deprecations extends Audit {

/** @type {LH.Audit.Details.Table['headings']} */
const headings = [
{key: 'value', itemType: 'code', text: str_(UIStrings.columnDeprecate)},
{key: 'value', itemType: 'text', text: str_(UIStrings.columnDeprecate)},
{key: 'url', itemType: 'url', text: str_(i18n.UIStrings.columnURL)},
{key: 'lineNumber', itemType: 'text', text: str_(UIStrings.columnLine)},
];
Expand Down
2 changes: 1 addition & 1 deletion lighthouse-core/test/results/sample_v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@
"headings": [
{
"key": "value",
"itemType": "code",
"itemType": "text",
"text": "Deprecation / Warning"
},
{
Expand Down
2 changes: 1 addition & 1 deletion proto/sample_v2_round_trip.json
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@
"details": {
"headings": [
{
"itemType": "code",
"itemType": "text",
"key": "value",
"text": "Deprecation / Warning"
},
Expand Down

0 comments on commit c660975

Please sign in to comment.