You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CTRL-click on <twig:MyComponent> in a template, is supposed to let the user choose between navigating to the component PHP class or to the component template :
It seems this doesn't fully work for components with a named_prefix :
CTRL-click brings directly to the PHP class, and doesn't offer to go to the template
CTRL-click on the 1st shows the popup to chose between MyComponent.php or MyComponent.html.twig
CTRL-click on the 2nd directly opens MyComponent2.php, I can't navigate to MyComponent2.html.twig
The text was updated successfully, but these errors were encountered:
CTRL-click on
<twig:MyComponent>
in a template, is supposed to let the user choose between navigating to the component PHP class or to the component template :It seems this doesn't fully work for components with a named_prefix :
CTRL-click brings directly to the PHP class, and doesn't offer to go to the template
Example :
src/Twig/Components/MyComponent.php
templates/components/MyComponent.html.twig
src/Twig/PrefixedComponents/MyComponent2.php
templates/components/MyComponent2.html.twig
Then in a twig file using both components :
CTRL-click on the 1st shows the popup to chose between MyComponent.php or MyComponent.html.twig
CTRL-click on the 2nd directly opens MyComponent2.php, I can't navigate to MyComponent2.html.twig
The text was updated successfully, but these errors were encountered: