From 0b805a8d9793782574c6cb8d4767ca9386b996cb Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Sun, 4 Feb 2018 22:38:35 +0000 Subject: [PATCH] Make error message bold on the decoder page (#582) * Make error message bold on the decoder page * Update ErrorDecoder.js * Update ErrorDecoder.js --- src/components/ErrorDecoder/ErrorDecoder.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/ErrorDecoder/ErrorDecoder.js b/src/components/ErrorDecoder/ErrorDecoder.js index db01876f..e25531bc 100644 --- a/src/components/ErrorDecoder/ErrorDecoder.js +++ b/src/components/ErrorDecoder/ErrorDecoder.js @@ -77,8 +77,12 @@ function ErrorResult(props: {|code: ?string, msg: string|}) { return (
-

The full text of the error you just encountered is:

- {urlify(errorMsg)} +

+ The full text of the error you just encountered is: +

+ + {urlify(errorMsg)} +
); }