From eb561ad83c1fbb971c1e774678a0c6a23356034c Mon Sep 17 00:00:00 2001 From: Matthew Elwell Date: Tue, 15 Sep 2026 10:08:05 +0100 Subject: [PATCH] Restrict size of hidden values --- frontend/web/components/modals/CreateEditIntegrationModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/web/components/modals/CreateEditIntegrationModal.tsx b/frontend/web/components/modals/CreateEditIntegrationModal.tsx index 37926ca745be..abdad45945c8 100644 --- a/frontend/web/components/modals/CreateEditIntegrationModal.tsx +++ b/frontend/web/components/modals/CreateEditIntegrationModal.tsx @@ -428,7 +428,7 @@ const CreateEditIntegration: FC = (props) => { return String(value ?? '') } if (field.hidden && typeof value === 'string') { - return value.replace(/./g, '*') + return '**********' } return value ?? '' }