Browse Source

Make error message bold on the decoder page (#582)

* Make error message bold on the decoder page

* Update ErrorDecoder.js

* Update ErrorDecoder.js
main
Dan Abramov 7 years ago
committed by GitHub
parent
commit
0b805a8d97
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      src/components/ErrorDecoder/ErrorDecoder.js

8
src/components/ErrorDecoder/ErrorDecoder.js

@ -77,8 +77,12 @@ function ErrorResult(props: {|code: ?string, msg: string|}) {
return (
<div>
<p>The full text of the error you just encountered is:</p>
<code>{urlify(errorMsg)}</code>
<p>
<b>The full text of the error you just encountered is:</b>
</p>
<code>
<b>{urlify(errorMsg)}</b>
</code>
</div>
);
}

Loading…
Cancel
Save