mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
fix checklist buttons (#1824)
This commit is contained in:
parent
397c49810f
commit
721e96c01b
@ -9,7 +9,9 @@
|
|||||||
<li class="mdl-list__item" *ngFor="let check of checklist">
|
<li class="mdl-list__item" *ngFor="let check of checklist">
|
||||||
<span class="mdl-chip mdl-chip--deletable" id="check-{{check.id}}">
|
<span class="mdl-chip mdl-chip--deletable" id="check-{{check.id}}">
|
||||||
<span class="mdl-chip__text">{{check.name}}</span>
|
<span class="mdl-chip__text">{{check.name}}</span>
|
||||||
<button type="button" class="mdl-chip__action"><i id="remove-{{check.id}}" (click)="delete(check.id)" class="material-icons">cancel</i></button>
|
<button type="button" class="mdl-chip__action" (click)="delete(check.id)">
|
||||||
|
<i id="remove-{{check.id}}" class="material-icons">cancel</i>
|
||||||
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user