Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Added title attributes so that users can view long titles and descrip…
Browse files Browse the repository at this point in the history
…tions per code review request
  • Loading branch information
Blackbaud-TrevorBurch committed Sep 7, 2017
1 parent f969ae8 commit b7e7c64
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@
[checked]="itemSelected(item.id) | async"
(change)="setItemSelection(item, $event)">
<sky-checkbox-label>
<div class="sky-emphasized" *ngIf="item.label">{{item.label}}</div>
<div *ngIf="item.description">{{item.description}}</div>
<div class="sky-emphasized" *ngIf="item.label" [attr.title]="item.label">
{{item.label}}
</div>
<div *ngIf="item.description" [attr.title]="item.description">
{{item.description}}
</div>
</sky-checkbox-label>
</sky-checkbox>
</sky-list-view-checklist-item>
Expand Down

0 comments on commit b7e7c64

Please sign in to comment.