Skip to content

Commit

Permalink
Fix #63
Browse files Browse the repository at this point in the history
  • Loading branch information
githubjeka committed Sep 10, 2015
1 parent c53daa8 commit e0f709d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion widgets/Menu.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ protected function renderItem($item)
'{icon}' => '<i class="' . $item['icon'] . '"></i> '
] : [
'{url}' => Url::to($item['url']),
'{label}' => '<span>'.$item['label'].'</span>'
'{label}' => '<span>'.$item['label'].'</span>',
'{icon}' => null,
];
return strtr($template, $replace);
} else {
Expand Down

0 comments on commit e0f709d

Please sign in to comment.