From 68f966b95b4fbe7942555d3cc339579c2f96dda7 Mon Sep 17 00:00:00 2001 From: KIRAN KASHALKAR Date: Fri, 24 Feb 2017 12:56:57 +0100 Subject: [PATCH] NOTICKET: Minor fix for viewport glyph direction Signed-off-by: KIRAN KASHALKAR --- skyquake/plugins/launchpad/src/recordViewer/recordCard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyquake/plugins/launchpad/src/recordViewer/recordCard.jsx b/skyquake/plugins/launchpad/src/recordViewer/recordCard.jsx index 88ff709a4..82d8973e9 100644 --- a/skyquake/plugins/launchpad/src/recordViewer/recordCard.jsx +++ b/skyquake/plugins/launchpad/src/recordViewer/recordCard.jsx @@ -266,7 +266,7 @@ export default class RecordCard extends React.Component { if(this.props.isLoading) { html = } else { - let glyphValue = (this.props.mmmrecordDetailsToggleValue) ? "chevron-left" : "chevron-right"; + let glyphValue = (!this.props.recordDetailsToggleValue) ? "chevron-left" : "chevron-right"; if (this.props.type == 'nsr') { tabList.push( -- 2.17.1