feat(cp-frontend): add manifest notice for imported DG

This commit is contained in:
Sérgio Ramos 2017-06-27 19:42:18 +01:00 committed by Judit Greskovits
parent cb908d33e5
commit e8f05282fa
1 changed files with 13 additions and 1 deletions

View File

@ -19,7 +19,7 @@ const Manifest = ({
const _loading = !loading ? null : <DeploymentGroupsLoading />;
const _error = !error ? null : <span>{error.toString()}</span>;
const _view = (loading || !deploymentGroup)
const _view = loading || !deploymentGroup
? null
: <DeploymentGroupEditOrCreate
edit
@ -27,11 +27,23 @@ const Manifest = ({
deploymentGroup={deploymentGroup}
/>;
const _notice = !err &&
!loading &&
deploymentGroup &&
deploymentGroup.imported &&
!manifest
? null
: <span>
Since this DeploymentGroup was imported, it doesn't have the initial
manifest
</span>;
return (
<LayoutContainer>
<H2>Edit Manifest</H2>
{_error}
{_loading}
{_notice}
{_view}
</LayoutContainer>
);