diff --git a/pkg/interface/src/views/components/leap/OmniboxResult.js b/pkg/interface/src/views/components/leap/OmniboxResult.js index 92ef7daa1..5c8e419f6 100644 --- a/pkg/interface/src/views/components/leap/OmniboxResult.js +++ b/pkg/interface/src/views/components/leap/OmniboxResult.js @@ -30,19 +30,20 @@ export class OmniboxResult extends Component { const sigilFill = (this.state.hovered || (selected === link)) ? '#3a8ff7' : '#ffffff'; let graphic =
; - if (defaultApps.includes(icon.toLowerCase()) || icon.toLowerCase() === 'links') { + if (defaultApps.includes(icon.toLowerCase()) || icon.toLowerCase() === 'links' || icon === 'inbox') { + icon = (icon === 'inbox') ? 'Inbox' : icon; icon = (icon === 'Link') ? 'Links' : icon; graphic = ; } else if (icon === 'logout') { graphic = ; } else if (icon === 'profile') { - graphic = ; + graphic = ; } else if (icon === 'home') { graphic = ; } else if (icon === 'notifications') { graphic = ; } else { - graphic = ; + graphic = ; } return graphic;