diff options
author | vasraz <vasyl.razinkov@est.tech> | 2022-03-31 13:35:04 +0100 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2022-03-31 13:58:12 +0000 |
commit | 6cffd9e3eecb10281d880ea7d217f0ecddf8fb5a (patch) | |
tree | 3edeea0e0ff6d074877e87840feb00810f5af2a5 /catalog-ui/src/app/models/component-metadata.ts | |
parent | fcb0da941d472c1f94868246c4bb0e2e9d590e38 (diff) |
Update Interface definition on VFC
Signed-off-by: aribeiro <anderson.ribeiro@est.tech>
Change-Id: I13678c92ae6088016a78554ffaf0da47b82f7e65
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-3893
Signed-off-by: andre.schmid <andre.schmid@est.tech>
Diffstat (limited to 'catalog-ui/src/app/models/component-metadata.ts')
-rw-r--r-- | catalog-ui/src/app/models/component-metadata.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/catalog-ui/src/app/models/component-metadata.ts b/catalog-ui/src/app/models/component-metadata.ts index e135e897de..c79552844d 100644 --- a/catalog-ui/src/app/models/component-metadata.ts +++ b/catalog-ui/src/app/models/component-metadata.ts @@ -19,7 +19,7 @@ */ import { CapabilitiesGroup, RequirementsGroup } from 'app/models'; -import { ComponentType } from 'app/utils'; +import {ComponentState, ComponentType} from 'app/utils'; import { IMainCategory } from './category'; import { Metadata } from "app/models/metadata"; /** @@ -215,4 +215,8 @@ export class ComponentMetadata implements IComponentMetadata { public getTypeUrl(): string { return this.componentType === ComponentType.RESOURCE ? 'resources/' : 'services/'; } + + public isComponentDataEditable(): boolean { + return this.lifecycleState !== ComponentState.NOT_CERTIFIED_CHECKOUT; + } } |