diff options
Diffstat (limited to 'catalog-ui/src/app/ng2/pages/properties-assignment')
3 files changed, 5 insertions, 3 deletions
diff --git a/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.html b/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.html index 747624a03f..d04ddf5c91 100644 --- a/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.html +++ b/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.html @@ -40,7 +40,7 @@ (deleteProperty)="deleteProperty($event)"> </properties-table> </tab> - <tab tabTitle="Inputs"> + <tab tabTitle="Inputs" [show]="isSelf()"> <inputs-table class="properties-table" [fePropertiesMap]="instanceFePropertiesMap" [readonly]="isReadonly" @@ -53,7 +53,7 @@ (inputChanged)="dataChanged($event)"> </inputs-table> </tab> - <tab tabTitle="Policies"> + <tab tabTitle="Policies" [show]="isSelf()"> <policies-table class="properties-table" [readonly]="isReadonly" [policies]="policies | searchFilter:'name':searchQuery" diff --git a/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.less b/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.less index a1309aba61..1c627588a2 100644 --- a/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.less +++ b/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.less @@ -30,7 +30,7 @@ min-width:930px; /deep/ .tabs { - width:33%; + width:18%; text-align:center; } 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 786aa8d566..4baae199c4 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 @@ -648,6 +648,8 @@ export class PropertiesAssignmentComponent { this.topologyTemplateService .createInput(this.component, inputsToCreate, this.isSelf()) .subscribe((response) => { + this.selectInstanceRow(SERVICE_SELF_TITLE); + this.onInstanceSelectedUpdate(this.instances[0]); this.setInputTabIndication(response.length); this.checkedPropertiesCount = 0; this.checkedChildPropertiesCount = 0; |