From d308c123766317b80a5c3a5f29fe493e87ced653 Mon Sep 17 00:00:00 2001 From: Conrad Date: Thu, 29 Mar 2018 13:47:32 -0400 Subject: [PATCH] Add Project string if there is not Project Type --- src/containers/BGroup/BGroupBuildingTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/BGroup/BGroupBuildingTable.js b/src/containers/BGroup/BGroupBuildingTable.js index 17638693..01da6f57 100644 --- a/src/containers/BGroup/BGroupBuildingTable.js +++ b/src/containers/BGroup/BGroupBuildingTable.js @@ -863,7 +863,7 @@ export default class BGroupBuildingTable extends Component { return (
  • { i.state } - {' '} - {i.project_type} + {' '} - {i.project_type ? i.project_type : 'Project' }
  • ); })} -- GitLab