Skip to content

Commit 0b805a8

Browse files
authored
Make error message bold on the decoder page (reactjs#582)
* Make error message bold on the decoder page * Update ErrorDecoder.js * Update ErrorDecoder.js
1 parent e421d21 commit 0b805a8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/components/ErrorDecoder/ErrorDecoder.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,12 @@ function ErrorResult(props: {|code: ?string, msg: string|}) {
7777

7878
return (
7979
<div>
80-
<p>The full text of the error you just encountered is:</p>
81-
<code>{urlify(errorMsg)}</code>
80+
<p>
81+
<b>The full text of the error you just encountered is:</b>
82+
</p>
83+
<code>
84+
<b>{urlify(errorMsg)}</b>
85+
</code>
8286
</div>
8387
);
8488
}

0 commit comments

Comments
 (0)