Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #10606 - Recently viewed items tooltip shows module name instead of full record name #10607

Open
wants to merge 1 commit into
base: hotfix
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions themes/SuiteP/tpls/_headerModuleList.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@
href="{sugar_link module=$item.module_name action='DetailView' record=$item.item_id link_only=1}"
class="recent-links-detail">
<span class="suitepicon suitepicon-module-{$item.module_name|lower|replace:'_':'-'}"></span>
<span>{$item.item_summary_short}</span>
<span title="{$item.item_summary}">{$item.item_summary_short}</span>
</a>
{capture assign='access'}{suite_check_access module=$item.module_name action='edit' record=$item.item_id }{/capture}
{if $access}
Expand All @@ -836,7 +836,7 @@
<li class="recentlinks" role="presentation">
<a title="{sugar_translate module=$item.module_name label=LBL_MODULE_NAME}" accessKey="{$smarty.foreach.lastViewed.iteration}" href="{sugar_link module=$item.module_name action='DetailView' record=$item.id link_only=1}" class="favorite-links-detail">
<span class="suitepicon suitepicon-module-{$item.module_name|lower|replace:'_':'-'}"></span>
<span aria-hidden="true">{$item.item_summary_short}</span>
<span title="{$item.item_summary}" aria-hidden="true">{$item.item_summary_short}</span>
</a>
{capture assign='access'}{suite_check_access module=$item.module_name action='edit' record=$item.id }{/capture}
{if $access}
Expand Down