diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js index c876f0aa93..01333276c1 100644 --- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js +++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js @@ -757,7 +757,7 @@ var Artemis; */ function createBodyText(message) { Artemis.log.debug("loading message:" + message); - if (message.text) { + if (message.text !== undefined) { var body = message.text; var lenTxt = "" + body.length; message.textMode = "text (" + lenTxt + " chars)";