From bef55043f76afff4f2bcfb9d4d07246945da5250 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Sat, 26 Apr 2025 10:16:30 +0400 Subject: [PATCH] Update OrgWorkflowIntegrationTab.tsx --- .../OrgWorkflowIntegrationTab.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) 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)}