From 039a4ef5591107d5e697c9f46fdbe149a67ca2f2 Mon Sep 17 00:00:00 2001 From: Laurence Maultsby Date: Mon, 27 Feb 2017 12:03:03 -0500 Subject: [PATCH] RIFT-15653: Volumes tab fix Signed-off-by: Laurence Maultsby --- skyquake/plugins/launchpad/src/recordViewer/recordCard.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skyquake/plugins/launchpad/src/recordViewer/recordCard.jsx b/skyquake/plugins/launchpad/src/recordViewer/recordCard.jsx index 82d8973e9..50a3585d5 100644 --- a/skyquake/plugins/launchpad/src/recordViewer/recordCard.jsx +++ b/skyquake/plugins/launchpad/src/recordViewer/recordCard.jsx @@ -144,10 +144,10 @@ export default class RecordCard extends React.Component { let p = []; _.forEach(obj, function(v, k) { p.push( -
+
{k}
-
{v.constructor.name != 'Object' ? v : buildProperties(v)}
+
{v.constructor.name == 'String' ? v : buildProperties(v)}
) }); -- 2.17.1