I found an issue with the admin tool bar search results where when clicking the autocomplete result, the links are opening twice.
Adding a simplyTest.me video for reference.
TO fix the issue i did the below:
Before :
.append('<div ><a href="' + item.value + '" onclick="window.open(this.href); return false;" >' + item.labelRaw + ' <span class="admin-toolbar-search-url">' + item.value + '</span></a></div>')
After :
.append('<div ><a href="' + item.value + '" onclick="window.open(this.href, _self); return false;" >' + item.labelRaw + ' <span class="admin-toolbar-search-url">' + item.value + '</span></a></div>')
Active
3.4
Code