Explorar el Código

strip hashtag from slack channel (#4252)

d-g-town hace 2 años
padre
commit
b9fc64f8cc
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      dashboard/src/main/home/integrations/SlackIntegrationList.tsx

+ 1 - 1
dashboard/src/main/home/integrations/SlackIntegrationList.tsx

@@ -143,7 +143,7 @@ const SlackIntegration: React.FC<SlackIntegrationProps> = ({
             <Icon src={hash} height={"12px"} />
             <Spacer x={0.2} inline />
             <Text size={13} color="#eeeeeedd">
-              {inst.channel}
+              {inst.channel.replace("#", "")}
             </Text>
           </Container>
         </Tag>