diff --git a/client/helpers/get-json-string-object.js b/client/helpers/get-json-string-object.js index 25522c6e1..c868e39fe 100644 --- a/client/helpers/get-json-string-object.js +++ b/client/helpers/get-json-string-object.js @@ -22,7 +22,8 @@ import getStringElipsis from './get-string-elipsis'; const getJsonStringObject = value => { - const jsonStringFull = value !== null && value !== undefined ? JSON.stringify(value, null, 2) : ''; + const jsonStringFull = + value !== null && value !== undefined ? JSON.stringify(value, null, 2) : ''; const jsonStringDisplay = getStringElipsis(jsonStringFull); return {