+
{loading && cat.isProject &&
}
diff --git a/frontend/app/components/Client/Integrations/SlackChannelList/SlackChannelList.js b/frontend/app/components/Client/Integrations/SlackChannelList/SlackChannelList.js
index 07f1aa123..8d25b4454 100644
--- a/frontend/app/components/Client/Integrations/SlackChannelList/SlackChannelList.js
+++ b/frontend/app/components/Client/Integrations/SlackChannelList/SlackChannelList.js
@@ -27,7 +27,11 @@ function SlackChannelList(props) {
show={list.size === 0}
>
{list.map((c) => (
-
onEdit(c)}>
+
onEdit(c)}
+ >
{c.name}
{c.endpoint}
diff --git a/frontend/app/components/Client/Integrations/SlackForm.tsx b/frontend/app/components/Client/Integrations/SlackForm.tsx
index 207f9b765..e04c02de6 100644
--- a/frontend/app/components/Client/Integrations/SlackForm.tsx
+++ b/frontend/app/components/Client/Integrations/SlackForm.tsx
@@ -24,16 +24,16 @@ const SlackForm = (props: Props) => {
}, []);
return (
-
-
-
Slack
-
-
+
{active && (
-
+
setActive(false)} />
)}
+
+
Slack
+
+
);
};