aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/connection-wizard/properties-step/properties-step.component.html
blob: 9e34893272b5f05b0a3315e09dd17a290ab02569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="title">
    <span class="capability-name">
        {{(connectWizardService.selectedMatch.capability && connectWizardService.selectedMatch.capability.getTitle()) || connectWizardService.selectedMatch.relationship.relation.capability}}
    </span>
</div>
<div class="properties-table-container">
    <properties-table class="properties-table"
                      (valueChanged)="propertyValueChanged($event)"
                      [fePropertiesMap]="capabilityPropertiesMap"
                      [selectedPropertyId]="''"
                      [hidePropertyType]="true">
    </properties-table>
</div>