Please allow us to cmd/ctrl-click results from the search fields #4623
-
Title says it is, currently you cannot open the results from the Nova search fields in a new tab by using cmd/ctrl-click Even though this is not a straight up href link and uses vue/inertia for routing, it's definitely possible, and easy even, to capture the keypress upon click and if the cmd/ctrl/meta key is pressed down then trigger a window.open. I've done this before on Vue-router apps. Please add this convenience. Many thanks |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
I'm really dying for this cmd-click functionality on the global search, so I am overriding the GlobalSearch Vue component and it was incredibly easy to add. All I had to do was these three tiny changes and you can now open in a new tab while holding cmd/ctrl, and if you don't then it opens in the current tab as normal. It would be really awesome if you could add this small but terribly useful fix. before
after
before (inside goToCurrentlySelectedResource method)
after (inside goToCurrentlySelectedResource method)
before
after
Many Thanks!! |
Beta Was this translation helpful? Give feedback.
-
i havent try myself but does middle mouse click work for u? |
Beta Was this translation helpful? Give feedback.
-
I've added the ability to hold the |
Beta Was this translation helpful? Give feedback.
I've added the ability to hold the
meta
key (same as resource table rows) and click the search result to open them in a new tab. Also, holdingmeta
while pressing enter will also open the result in a new tab. 👍