Hi guys, I am new to ember. I am trying to open a link constructed with link-to helper in a new tab. When I clicked (Ctrl + Click) the link, base route was opened instead of the expected route. How can I achieve this?
This should work as you expect provided the link is actually generating a link and not using an action, and also that your authentication flow (if you have one) doesn’t change anything. Could you share some of your code.
1 Like
Hi dknutsen, Thanks for your help. The mistake is mine. I am using an action to redirect instead of link-to helper . link-to helper works well while opening in a new tab.