Skip to content

Instantly share code, notes, and snippets.

@Gbuomprisco
Created May 26, 2019 12:26
Show Gist options
  • Save Gbuomprisco/c420a0b8d45fb7624c4f1d6604b4cb5e to your computer and use it in GitHub Desktop.
Save Gbuomprisco/c420a0b8d45fb7624c4f1d6604b4cb5e to your computer and use it in GitHub Desktop.
<div [ngSwitch]="tile.assetId" fxLayout="column">
<div class="tile-header">
<div class="tile-heading" *ngSwitchDefault>
{{ tile.assetId | titlecase }}
</div>
<cf-asset-selector
*ngSwitchCase="undefined"
(assetSelected)="updateTile($event)"
></cf-asset-selector>
</div>
<div class="tile-content" fxFlexAlign="center center">
<cf-asset-pricer
*ngSwitchDefault
[asset]="tile.assetId">
</cf-asset-pricer>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment