diff --git a/pkg/interface/src/views/apps/notifications/graph.tsx b/pkg/interface/src/views/apps/notifications/graph.tsx index 829f96bbc8..3f29b9e304 100644 --- a/pkg/interface/src/views/apps/notifications/graph.tsx +++ b/pkg/interface/src/views/apps/notifications/graph.tsx @@ -25,7 +25,7 @@ import ChatMessage, {MessageWithoutSigil} from "../chat/components/ChatMessage"; function getGraphModuleIcon(module: string) { if (module === "link") { - return "Links"; + return "Collection"; } return _.capitalize(module); } diff --git a/pkg/interface/src/views/components/leap/OmniboxResult.js b/pkg/interface/src/views/components/leap/OmniboxResult.js index 504fbafac7..9ed37a955e 100644 --- a/pkg/interface/src/views/components/leap/OmniboxResult.js +++ b/pkg/interface/src/views/components/leap/OmniboxResult.js @@ -37,7 +37,7 @@ export class OmniboxResult extends Component { || icon.toLowerCase() === 'links' || icon.toLowerCase() === 'terminal') { - icon = (icon === 'Link') ? 'Links' : + icon = (icon === 'Link') ? 'Collection' : (icon === 'Terminal') ? 'Dojo' : icon; graphic = ; } else if (icon === 'inbox') { diff --git a/pkg/interface/src/views/landscape/components/Sidebar/SidebarItem.tsx b/pkg/interface/src/views/landscape/components/Sidebar/SidebarItem.tsx index 61c425d496..4eb101228d 100644 --- a/pkg/interface/src/views/landscape/components/Sidebar/SidebarItem.tsx +++ b/pkg/interface/src/views/landscape/components/Sidebar/SidebarItem.tsx @@ -27,7 +27,7 @@ function SidebarItemIndicator(props: { status?: SidebarItemStatus }) { const getAppIcon = (app: string, mod: string) => { if (app === "graph") { if (mod === "link") { - return "Links"; + return "Collection"; } return _.capitalize(mod); }