From ff99302dfef99e0f2e1b5edafbf2f00ce34c2a9f Mon Sep 17 00:00:00 2001 From: Niloth P <20315308+Niloth-p@users.noreply.github.com> Date: Thu, 28 Nov 2024 06:07:04 +0530 Subject: [PATCH] integrations: Trim trailing whitespace in integration categories. --- locale/fr/LC_MESSAGES/django.po | 2 +- web/src/portico/integrations.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po index 58f0f2e4e9..fae165607e 100644 --- a/locale/fr/LC_MESSAGES/django.po +++ b/locale/fr/LC_MESSAGES/django.po @@ -4983,7 +4983,7 @@ msgstr "Divers" #: zerver/lib/integrations.py:57 msgid "Monitoring" -msgstr "Suivi " +msgstr "Suivi" #: zerver/lib/integrations.py:58 msgid "Project management" diff --git a/web/src/portico/integrations.js b/web/src/portico/integrations.js index 62aea827bc..e940a35c14 100644 --- a/web/src/portico/integrations.js +++ b/web/src/portico/integrations.js @@ -162,7 +162,7 @@ function hide_catalog_show_integration() { $("

") .addClass("integration-category") .attr("data-category", link) - .text(category), + .text(category.trim()), ); $("#integration-instructions-group .categories").append($category_el); }