diff options
author | MichaelMorris <michael.morris@est.tech> | 2023-06-19 15:21:06 +0100 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2023-06-20 10:48:11 +0000 |
commit | 2877eedcc049de2509bad6030ccbf50175bc02cc (patch) | |
tree | 36fe8a1009a12a5f67808dc1959ae3ae4acd06a2 | |
parent | a622b7fe17a94698c1d242772d5d1b1d48761a29 (diff) |
Fix cannot set instance property
Signed-off-by: MichaelMorris <michael.morris@est.tech>
Issue-ID: SDC-4543
Change-Id: I9d98429b2fa9ff2d897a35551d89b9fc3e5cfd48
-rw-r--r-- | catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts b/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts index 834f28ed27..b6abb78788 100644 --- a/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts +++ b/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts @@ -309,7 +309,7 @@ export class PropertiesAssignmentComponent { } disablePropertyValue = () : boolean => { - if (this.component.isService() && this.doNotExtendBaseType){ + if (this.component.isService() && this.doNotExtendBaseType && this.isSelf()){ return true; } return false; |