From 9e00338f5b4afc7238a2f90eca800364cd397692 Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Tue, 23 Jul 2024 11:33:02 +0200 Subject: [PATCH] Merge pull request #19467 from overleaf/jpa-e2e-test-fix [web] forward "name" on BS3 variant of OLFormControl into DOM GitOrigin-RevId: 8eb276e767f1aa4b422aca390887b93433681c87 --- .../frontend/js/features/ui/components/ol/ol-form-control.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/services/web/frontend/js/features/ui/components/ol/ol-form-control.tsx b/services/web/frontend/js/features/ui/components/ol/ol-form-control.tsx index 3543d49cf3..7b0126b497 100644 --- a/services/web/frontend/js/features/ui/components/ol/ol-form-control.tsx +++ b/services/web/frontend/js/features/ui/components/ol/ol-form-control.tsx @@ -15,6 +15,7 @@ const OLFormControl = forwardRef( let bs3FormControlProps: React.ComponentProps = { id: rest.id, + name: rest.name, className: rest.className, style: rest.style, type: rest.type,