diff options
author | JvD_Ericsson <jeff.van.dam@est.tech> | 2023-01-19 14:43:33 +0000 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2023-01-23 15:44:25 +0000 |
commit | 7457ecefb624682f6dddc558111b1d38f2a2ca83 (patch) | |
tree | 52cbc05f95c23ac2c8d2b9be97a8ac19eec38ad3 /catalog-ui | |
parent | 3da7d9867ab91b58f2a765d24731b45a3f43841c (diff) |
Fix ability to add property to data type of different model
Issue-ID: SDC-4339
Signed-off-by: JvD_Ericsson <jeff.van.dam@est.tech>
Change-Id: Ibc5b57a042ffc4e7f914d46ad264a0e16081b863
Diffstat (limited to 'catalog-ui')
-rw-r--r-- | catalog-ui/src/app/ng2/pages/type-workspace/type-workspace-properties/type-workspace-properties.component.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/catalog-ui/src/app/ng2/pages/type-workspace/type-workspace-properties/type-workspace-properties.component.ts b/catalog-ui/src/app/ng2/pages/type-workspace/type-workspace-properties/type-workspace-properties.component.ts index 90bc89ae08..f53ad5b376 100644 --- a/catalog-ui/src/app/ng2/pages/type-workspace/type-workspace-properties/type-workspace-properties.component.ts +++ b/catalog-ui/src/app/ng2/pages/type-workspace/type-workspace-properties/type-workspace-properties.component.ts @@ -173,7 +173,8 @@ export class TypeWorkspacePropertiesComponent implements OnInit { this.modalService.addDynamicContentToModalAndBindInputs(modal, AddPropertyComponent, { 'readOnly': readOnly, - 'property': property + 'property': property, + 'model': this.dataType.model }); modal.instance.dynamicContent.instance.onValidityChange.subscribe((validationEvent: PropertyValidationEvent) => { disableSaveButtonFlag = !validationEvent.isValid; |