Skip to content

Commit

Permalink
IBX-8009: Fix unnecessary tooltips in UDW bookmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
tischsoic committed Apr 16, 2024
1 parent b99be41 commit e5c0c04
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,15 @@ const BookmarksList = ({ setBookmarkedLocationMarked, itemsPerPage }) => {
};

return (
<div
key={bookmark.id}
className={className}
onClick={markLocation}
title={bookmark.ContentInfo.Content.TranslatedName}
data-tooltip-container-selector=".c-bookmarks-list"
>
<div key={bookmark.id} className={className} onClick={markLocation}>
<Icon extraClasses="ibexa-icon--small" customPath={contentTypeInfo.thumbnail} />
<span className="c-bookmarks-list__item-name">{bookmark.ContentInfo.Content.TranslatedName}</span>
<span
title={bookmark.ContentInfo.Content.TranslatedName}
data-tooltip-container-selector=".c-bookmarks-list"
className="c-bookmarks-list__item-name"
>
{bookmark.ContentInfo.Content.TranslatedName}
</span>
</div>
);
})}
Expand Down

0 comments on commit e5c0c04

Please sign in to comment.