diff --git a/app/src/frontend/building/data-containers/team.tsx b/app/src/frontend/building/data-containers/team.tsx index d835ee3d..014875e5 100644 --- a/app/src/frontend/building/data-containers/team.tsx +++ b/app/src/frontend/building/data-containers/team.tsx @@ -15,35 +15,37 @@ const TeamView: React.FunctionComponent = (props) => { const building = props.building; const currentYear = new Date().getFullYear(); const currentBuildingConstructionYear = building.date_year || undefined; - return ( - - - + if (props.building.is_extension == "The main building"){ + return ( + + + - - - ); + + + ); + }; }; const TeamContainer = withCopyEdit(TeamView);