diff options
author | JvD_Ericsson <jeff.van.dam@est.tech> | 2022-07-08 14:00:20 +0100 |
---|---|---|
committer | Jeff van Dam <jeff.van.dam@est.tech> | 2022-07-11 07:41:14 +0000 |
commit | 1b5a2db8e2957873aedb0b9feb749009086d39c1 (patch) | |
tree | 6a548497dae3dddedbc8ee984048e77b92257ebd /catalog-ui/src | |
parent | a181da42a455614cc88fff820d18eda61acb18db (diff) |
Node Filters displayed incorrectly
Issue-ID: SDC-4087
Signed-off-by: JvD_Ericsson <jeff.van.dam@est.tech>
Change-Id: I57936124dc5845033c71b4089c1098684e10b048
Diffstat (limited to 'catalog-ui/src')
-rw-r--r-- | catalog-ui/src/app/ng2/components/logic/service-dependencies/service-dependencies.component.html | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/catalog-ui/src/app/ng2/components/logic/service-dependencies/service-dependencies.component.html b/catalog-ui/src/app/ng2/components/logic/service-dependencies/service-dependencies.component.html index 70ccc4c060..213210cc7d 100644 --- a/catalog-ui/src/app/ng2/components/logic/service-dependencies/service-dependencies.component.html +++ b/catalog-ui/src/app/ng2/components/logic/service-dependencies/service-dependencies.component.html @@ -25,9 +25,9 @@ tooltips tooltip="{{capability.capabilityName + ' : ' + capability.servicePropertyName + ' ' + getSymbol(capability.constraintOperator) + ' ' - + (capability.sourceName ? capability.sourceName + ':' : '') + capability.value}}"> - {{capability.capabilityName + ' : ' + capability.servicePropertyName + ' ' + getSymbol(capability.constraintOperator) - + ' ' + (capability.sourceName ? capability.sourceName + ':' : '') + capability.value}} + + (capability.value | json)}}"> + {{capability.capabilityName + ' : ' + capability.servicePropertyName + ' ' + getSymbol(capability.constraintOperator) + + ' ' + (capability.value | json)}} </div> <span *ngIf="!readonly" class="sprite-new delete-btn delete-icon" (click)="openDeleteModal(capabilities, i)" @@ -57,10 +57,9 @@ <div class="filter-desc" (click)="!readonly && onSelectNodeFilter(properties, i)" tooltips tooltip="{{property.servicePropertyName + ' ' + getSymbol(property.constraintOperator) + ' ' - + (property.sourceName ? property.sourceName + ':' : '') + property.value}}"> - {{property.servicePropertyName + ' ' + getSymbol(property.constraintOperator) - + ' ' - + (property.sourceName ? property.sourceName + ':' : '') + property.value}} + + (property.value | json)}}"> + {{property.servicePropertyName + ' ' + getSymbol(property.constraintOperator) + + ' ' + (property.value | json)}} </div> <span *ngIf="!readonly" class="sprite-new delete-btn delete-icon" (click)="openDeleteModal(properties, i)" |