From 2c4af0e1111b18e67227e5c2bd0f5ed966c44a87 Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Mon, 22 Nov 2021 04:29:20 +0000 Subject: [PATCH] integration: Fix overflowing display name on open collective page. Removed extra text to stop display name from flowing out of logo container. --- zerver/lib/integrations.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/zerver/lib/integrations.py b/zerver/lib/integrations.py index ac63bd609c..002feaa8b9 100644 --- a/zerver/lib/integrations.py +++ b/zerver/lib/integrations.py @@ -423,9 +423,7 @@ WEBHOOK_INTEGRATIONS: List[WebhookIntegration] = [ stream_name="opbeat", function="zerver.webhooks.opbeat.view.api_opbeat_webhook", ), - WebhookIntegration( - "opencollective", ["communication"], display_name="Open Collective Incoming Webhook" - ), + WebhookIntegration("opencollective", ["communication"], display_name="Open Collective"), WebhookIntegration("opsgenie", ["meta-integration", "monitoring"]), WebhookIntegration("pagerduty", ["monitoring"], display_name="PagerDuty"), WebhookIntegration("papertrail", ["monitoring"]),