Guest User

Untitled

a guest
Mar 18th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <div class="row mt-3">
  2. <div class="col-2 p-1 text-center align-self-center"
  3. [ngClass]="{
  4. 'bg-info': item.color === 'blue',
  5. 'bg-success': item.color === 'green',
  6. 'bg-warning': item.color === 'yellow',
  7. 'bg-danger': item.color === 'red'
  8. }"
  9. *ngFor="let item of filteredData">
  10. <strong>{{item.company}}</strong><br>
  11. {{item.country}}
  12. </div>
  13. </div>
Add Comment
Please, Sign In to add comment