Skip to content

Commit

Permalink
Merge pull request #5606 from e-reeley/Fix/#5602-missing-icons-in-search
Browse files Browse the repository at this point in the history
Fix #5602 icons not shown in add dashlet search.
  • Loading branch information
Dillon-Brown committed Mar 27, 2018
2 parents 7a39a03 + 245d568 commit 3a3c89a
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 3a3c89a

Please sign in to comment.