-
Bug
-
Resolution: Fixed
-
High
-
5
-
Minor
-
9
-
Many clients running Linux/Ubuntu in combination with Chrome have reported issues with Copy and Paste after duplicating tabs in Chrome.
Some users see this only when using Middle-Click to open a new tab.
Community Post found with multiple users reporting the issue:
https://community.atlassian.com/t5/Jira-questions/Copy-paste-text-between-issues-doesn-t-work/qaq-p/1839710
I have been informed by a client that they were able to find a workaround.
Workaround
Unable to find source-code formatter for language: codecontent panelcontent. Available languages are: actionscript, ada, applescript, bash, c, c#, c++, cpp, css, erlang, go, groovy, haskell, html, java, javascript, js, json, lua, none, nyan, objc, perl, php, python, r, rainbow, ruby, scala, sh, sql, swift, visualbasic, xml, yaml
triggering an alert before opening the new tab with the middle mouse button solved the problem. I used Chrome Extension JavaScript Injector v1.0.4, with this configuration: url to inject: https:// {my-server} .atlassian.net/browse/* code: document.addEventListener("mouseup", (event) => { if (event.button == 1) { alert('Feche esta modal para abrir sua nova aba') } });