Closed
Description
Symfony version(s) affected
6.1
Description
when i render stimulus controller with the following code
{{ stimulus_controller(
'quotes--tooth',
{
'toothNumber': 'x',
},
controllerOutlets = { 'quotes--modal-form': '.formal' }
)
}}
the result in html is like this
data-quotes--tooth-quotes-modal-form-outlet=".formal"
it's missing the double dashes, it should be like this to work
data-quotes--tooth-quotes--modal-form-outlet=".formal"
How to reproduce
with a subfolder controller that we call in anotehr controller using outlets, you should have the same bug
Possible Solution
No response
Additional Context
No response