From 1cc58cb01e57228f757b743fcf80f8dfa1a3d4a9 Mon Sep 17 00:00:00 2001 From: KIRAN KASHALKAR Date: Thu, 4 May 2017 16:24:56 -0400 Subject: [PATCH] Issue with VNFRs being absent in NSR Signed-off-by: KIRAN KASHALKAR --- .../launchpad/src/launchpad_card/launchpadCardCloudAccount.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyquake/plugins/launchpad/src/launchpad_card/launchpadCardCloudAccount.jsx b/skyquake/plugins/launchpad/src/launchpad_card/launchpadCardCloudAccount.jsx index 1856dda78..39397ff4c 100644 --- a/skyquake/plugins/launchpad/src/launchpad_card/launchpadCardCloudAccount.jsx +++ b/skyquake/plugins/launchpad/src/launchpad_card/launchpadCardCloudAccount.jsx @@ -36,7 +36,7 @@ export default class LaunchpadCardCloudAccount extends React.Component { (
  • NSR: {this.props.nsr['cloud-account']}

  • ) ) } - this.props.nsr['vnfrs'].map(function(v,i) { + this.props.nsr['vnfrs'] && this.props.nsr['vnfrs'].map(function(v,i) { if(v.hasOwnProperty('cloud-account')) { status.push( (
  • VNFR {v['short-name']}: {v['cloud-account']}

  • ) -- 2.17.1