diff --git a/frontend/src/pages/organization/SettingsPage/components/OrgWorkflowIntegrationTab/OrgWorkflowIntegrationTab.tsx b/frontend/src/pages/organization/SettingsPage/components/OrgWorkflowIntegrationTab/OrgWorkflowIntegrationTab.tsx index ecf5f09b3..b6e935e90 100644 --- a/frontend/src/pages/organization/SettingsPage/components/OrgWorkflowIntegrationTab/OrgWorkflowIntegrationTab.tsx +++ b/frontend/src/pages/organization/SettingsPage/components/OrgWorkflowIntegrationTab/OrgWorkflowIntegrationTab.tsx @@ -1,4 +1,4 @@ -import { faSlack } from "@fortawesome/free-brands-svg-icons"; +import { BsMicrosoftTeams, BsSlack } from "react-icons/bs"; import { faEllipsis, faGear, faPlus } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import axios from "axios"; @@ -174,8 +174,14 @@ export const OrgWorkflowIntegrationTab = withPermission( {workflowIntegrations?.map((workflowIntegration) => ( - -
{workflowIntegration.integration.toUpperCase()}
+ {workflowIntegration.integration === WorkflowIntegrationPlatform.SLACK ? ( + + ) : ( + + )} +
+ {workflowIntegration.integration.replaceAll("-", " ")} +
{workflowIntegration.slug} {renderStatus(workflowIntegration.status)}