Show elements using conditionals.
<strong *ngIf="If this expression is true show this element otherwise don't" >Content</strong>
<strong *ngIf="serverElement.type === 'server'">Content</strong>
<em *ngIf="serverElement.type === 'blueprint'">Content</em>