Merge pull request #19467 from overleaf/jpa-e2e-test-fix

[web] forward "name" on BS3 variant of OLFormControl into DOM

GitOrigin-RevId: 8eb276e767f1aa4b422aca390887b93433681c87
This commit is contained in:
Jakob Ackermann 2024-07-23 11:33:02 +02:00 committed by Copybot
parent 1a64d37fde
commit 291fdd4e30

View file

@ -15,6 +15,7 @@ const OLFormControl = forwardRef<HTMLInputElement, OLFormControlProps>(
let bs3FormControlProps: React.ComponentProps<typeof BS3FormControl> = {
id: rest.id,
name: rest.name,
className: rest.className,
style: rest.style,
type: rest.type,