Skip to content

Commit

Permalink
Fixes AB#1133: Favorite items not read by SR
Browse files Browse the repository at this point in the history
Related to AB#1051
  • Loading branch information
gingi authored and dpwatrous committed Dec 5, 2023
1 parent b499645 commit fe54e36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@
(mouseup)="handleMiddleMouseUp($event, favorite)"
(contextmenu)="onContextMenu(favorite)">

<bl-clickable class="dropdown-item favorite-item" (do)="gotoFavorite(favorite)">
<span attr.aria-label="{{favorite.name || favorite.id}}">
<bl-clickable class="dropdown-item favorite-item" (do)="gotoFavorite(favorite)"
attr.aria-label="{{favorite.name || favorite.id}}">
<div>
<i class="entity-type fa" [ngClass]="entityIcon(favorite)"
[title]="entityType(favorite)"></i>
{{favorite.name || favorite.id}}
<i *ngIf="favorite.url === currentUrl" class="extra fa fa-check"></i>
</span>
</div>
</bl-clickable>
<bl-clickable class="dropdown-item delete" (do)="removeFavorite(favorite)" title="Remove from favorites" name="remove">
<i class="fa fa-times" aria-hidden="true"></i>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ bl-pinned-dropdown {
color: $primary-color-dark;
}

> span {
> div {
flex: 1 1 auto;
text-align: left;
min-width: 20px;
Expand Down

0 comments on commit fe54e36

Please sign in to comment.