We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8739887 commit bb092d2Copy full SHA for bb092d2
app/demo1/data-table-demo1.html
@@ -43,8 +43,8 @@
43
</template>
44
<template #dataTableCell let-item="item">
45
<span style="color: grey">
46
- <span class="glyphicon glyphicon-ok" *ngIf="item.active"></span>
47
- <span class="glyphicon glyphicon-remove" *ngIf="!item.active"></span>
+ <span class="fa fa-check" *ngIf="item.active"></span>
+ <span class="fa fa-times" *ngIf="!item.active"></span>
48
</span>
49
50
</data-table-column>
0 commit comments