Skip to content

Commit c00a4c6

Browse files
committed
Issue 81: Fix "alt" text: "Cinque Terre"
The "tooltip"/"title" turns out to be an issue where the account name from Github is not available. A suggestion is to provide a fallback to the account name instead of the user name. This would be a change in the service and not the UI.
1 parent dda5805 commit c00a4c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/views/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<span>{{card.number}}</span>
5959
<span ng-repeat="assignee in card.assignees">
6060
<span class="pull-right avatar" popover-trigger="'mouseenter'" uib-popover="{{assignee.name}}" popover-placement="auto top">
61-
<img src="{{getAvatarUrl(assignee)}}" class="img-circle" alt="Cinque Terre" width="20" height="20">
61+
<img src="{{getAvatarUrl(assignee)}}" class="img-circle" alt="{{assignee.name}}" width="20" height="20">
6262
</span>
6363
</span>
6464

0 commit comments

Comments
 (0)