summaryrefslogtreecommitdiffstats
path: root/catalog-ui
diff options
context:
space:
mode:
authordavsad <david.sadlier@est.tech>2021-03-09 18:29:48 +0000
committerChristophe Closset <christophe.closset@intl.att.com>2021-04-06 09:09:21 +0000
commit565444adc4ddac4530eccb489a18f4b74e888ea3 (patch)
treec38efa6b2db54d60f58eea126b8204488d2a5cd9 /catalog-ui
parent0a1f233687c98d6574494681e123d44cc49596a5 (diff)
Add Create Service Substituition Filter Intergration Test
Issue-ID: SDC-3543 Signed-off-by: davsad <david.sadlier@est.tech> Change-Id: Id6aabc02e36f199ee9106ec1fb145b57c8493c88
Diffstat (limited to 'catalog-ui')
-rw-r--r--catalog-ui/src/app/ng2/components/logic/properties-table/properties-table.component.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/catalog-ui/src/app/ng2/components/logic/properties-table/properties-table.component.html b/catalog-ui/src/app/ng2/components/logic/properties-table/properties-table.component.html
index af7a61204c..2d8fa7705d 100644
--- a/catalog-ui/src/app/ng2/components/logic/properties-table/properties-table.component.html
+++ b/catalog-ui/src/app/ng2/components/logic/properties-table/properties-table.component.html
@@ -53,7 +53,7 @@
<checkbox *ngIf="hasDeclareOption" [(checked)]="property.isSelected" [disabled]="property.isDisabled || property.isDeclared || readonly"
(checkedChange)="propertyChecked(property)" [attr.data-tests-id]="property.name"></checkbox>
<div class="inner-cell-div-multiline" tooltip="{{property.name}}">
- <multiline-ellipsis className="table-cell-multiline-ellipsis" [lines]="2">{{property.name}}</multiline-ellipsis>
+ <multiline-ellipsis data-tests-id="propertyName" className="table-cell-multiline-ellipsis" [lines]="2">{{property.name}}</multiline-ellipsis>
</div>
</div>
<span *ngIf="property.description" class="property-description-icon sprite-new show-desc" tooltip="{{property.description}}"
@@ -65,7 +65,7 @@
<!-- Property Type -->
<div class="table-cell col2" *ngIf="!hidePropertyType">
<div class="inner-cell-div" tooltip="{{property.type | contentAfterLastDot}}">
- <span>{{property.type | contentAfterLastDot}}</span>
+ <span data-tests-id="propertyType">{{property.type | contentAfterLastDot}}</span>
</div>
</div>
<!-- Property ES (Entry Schema) -->