diff --git a/pkg/interface/src/views/components/leap/OmniboxResult.js b/pkg/interface/src/views/components/leap/OmniboxResult.js index 905fe6280..03f610317 100644 --- a/pkg/interface/src/views/components/leap/OmniboxResult.js +++ b/pkg/interface/src/views/components/leap/OmniboxResult.js @@ -33,7 +33,9 @@ export class OmniboxResult extends Component { if (defaultApps.includes(icon.toLowerCase()) || icon.toLowerCase() === 'links') { icon = (icon === 'Dojo') ? 'ChevronEast' : icon; icon = (icon === 'Link') ? 'Links' : icon; - graphic = ; + const color = (icon === 'ChevronEast') ? iconFill : 'transparent'; + const stroke = (icon === 'ChevronEast') ? 'transparent' : iconFill; + graphic = ; } else if (icon === 'logout') { graphic = ; } else if (icon === 'profile') {