This is an automated email from the ASF dual-hosted git repository. andytaylor pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/activemq-artemis-console.git
commit fbdb2696baa57498903fb11e0a11b474b1d1fb98 Author: GChuf <[email protected]> AuthorDate: Mon Oct 27 10:02:21 2025 +0100 ARTEMIS-5720: Remove extra fragment --- .../artemis-console-plugin/src/messages/MessageView.tsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/messages/MessageView.tsx b/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/messages/MessageView.tsx index 3ca27f0..a6ea84c 100644 --- a/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/messages/MessageView.tsx +++ b/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/messages/MessageView.tsx @@ -237,13 +237,11 @@ function getProps(properties: any, type:string): React.ReactNode { if(properties) { return Object.keys(properties).map((key, index) => { return ( - <> - <Tr id={key}> - <Td id={key + "key"}>{key}</Td> - <Td id={key + "val"}>{"" + properties[key]}</Td> - <Td id={key + "type"}>{type}</Td> - </Tr> - </> + <Tr id={key}> + <Td id={key + "key"}>{key}</Td> + <Td id={key + "val"}>{"" + properties[key]}</Td> + <Td id={key + "type"}>{type}</Td> + </Tr> ); } ) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information, visit: https://activemq.apache.org/contact
