Skip to content

Commit

Permalink
Added popover to long fields
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Sep 20, 2019
1 parent 9432f2c commit 40e74e4
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
[translate]="property.name"
[ngStyle]="{'width': width}">{{ property.name }}</span>
<span *ngFor="let v of property.value"
class="d-block"
class="d-block text-truncate"
role="definition"
[ngbPopover]="v"
[openDelay]="500"
triggers="mouseenter:mouseleave"
popoverClass="popover popover-info"
[ngStyle]="{'width': width}">{{ v ? v : (v === false) ? v : '-' }}</span>
</div>
</div>

0 comments on commit 40e74e4

Please sign in to comment.