aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/connection-wizard/properties-step/properties-step.component.html
blob: 9b1df69d7715c0d9f3ae69107d2b6aadc8ac1fc3 (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"
                      (propertyChanged)="propertyValueChanged($event)"
                      [fePropertiesMap]="capabilityPropertiesMap"
                      [selectedPropertyId]="''"
                      [hidePropertyType]="true">
    </properties-table>
</div>