Merge "workflow parameters API"
[vid.git] / vid-webpack-master / src / app / shared / components / model-information / model-information.html
1 <div id="model-information">
2   <div *ngFor="let item of modelInformationItems" ngClass={{itemClass}} attr.data-tests-id="model-item-{{item.label}}">
3     <tooltip-content #a>
4       <span> {{item.toolTipText}}</span>
5     </tooltip-content>
6
7     <div class="wrapper" [tooltip]="a" [tooltipDisabled]="!item.toolTipText" tooltipPlacement="top" [tooltipAnimation]="false">
8       <label attr.data-tests-id="model-item-label-{{item.testsId}}">{{item.label}}</label>
9       <div *ngFor="let value of item.values" class="model-item-value" attr.data-tests-id="model-item-value-{{item.testsId}}">{{value}}</div>
10     </div>
11   </div>
12 </div>