Skip to content

Commit

Permalink
Fix #5602 icons not shown in add dashlet search.
Browse files Browse the repository at this point in the history
  • Loading branch information
e-reeley committed Mar 27, 2018
1 parent e297dfb commit 245d568
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion include/MySugar/tpls/dashletsSearchResults.tpl
Expand Up @@ -48,7 +48,9 @@
{if $rowCounter % 2 == 0}
<tr>
{/if}
<td width="50%" align="left"><a href="javascript:void(0)" onclick="{$module.onclick}">{$module.icon}</a>&nbsp;<a class="mbLBLL" href="#" onclick="{$module.onclick}">{$module.title}</a><br /></td>
<td width="50%" align="left"><a id="{$module.id}_icon" href="javascript:void(0)" onclick="{$module.onclick}" style="text-decoration:none">
<span class="suitepicon suitepicon-module-{$module.module_name|lower|replace:'_':'-'}"></span>&nbsp;
<span class="mbLBLL" href="#" onclick="{$module.onclick}">{$module.title}</a><br /></td>
{if $rowCounter % 2 == 1}
</tr>
{/if}
Expand Down

0 comments on commit 245d568

Please sign in to comment.