Skip to content

Commit

Permalink
Merge pull request #1735 from jagadishg/fix/ui-studio-custom-icon-path
Browse files Browse the repository at this point in the history
fix(ui-studio): correct module custom icon path
  • Loading branch information
allardy committed Apr 26, 2019
2 parents 7a90fb9 + b8392e8 commit 288fa92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bp/ui-studio/src/web/components/Layout/Sidebar.jsx
Expand Up @@ -51,7 +51,7 @@ class Sidebar extends React.Component {

renderModuleItem = module => {
const path = `/modules/${module.name}`
const iconPath = `/assets/module/${module.name}/icon.png`
const iconPath = `/assets/modules/${module.name}/icon.png`
const moduleIcon =
module.menuIcon === 'custom' ? (
<img className={classnames(style.customIcon, 'bp-custom-icon')} src={iconPath} />
Expand Down

0 comments on commit 288fa92

Please sign in to comment.