mirror of
https://github.com/yldio/copilot.git
synced 2024-11-14 23:30:05 +02:00
fix(cp-frontend): fix imported manifest notice
This commit is contained in:
parent
d30988f652
commit
3ddeb0517e
@ -25,7 +25,11 @@ const Manifest = ({
|
|||||||
const stage = match.params.stage;
|
const stage = match.params.stage;
|
||||||
const _title = <Title>Edit Manifest</Title>;
|
const _title = <Title>Edit Manifest</Title>;
|
||||||
|
|
||||||
if (loading || !deploymentGroup || !hasManifest) {
|
if (
|
||||||
|
loading ||
|
||||||
|
!deploymentGroup ||
|
||||||
|
(!hasManifest && !deploymentGroup.imported)
|
||||||
|
) {
|
||||||
return (
|
return (
|
||||||
<LayoutContainer center>
|
<LayoutContainer center>
|
||||||
{_title}
|
{_title}
|
||||||
|
Loading…
Reference in New Issue
Block a user