Copying an atlassian jira link

Hello,
I am trying to copy links from Atlassian Jira and they always appears in the note as “mycompany.atlassian.net” which makes it not very informative in the card in read mode. It will open the link like https://mycompany.atlassian.net/browse/MYPROJECT-1234.
In other apps I already saw that it is possible to see something like “[PROJECT-1234] the title of the task” as the title of the link making it more useful when reading the card. Is it a settings that i need to change ?
Thanks in advance

Hello, if someone has the same question, a solution exists (thanks to AI…)
Create a bookmark with this javascript:

javascript:(function(){
var m = window.location.pathname.match(/([A-Z][A-Z0-9]±\d+)/);
if(!m){alert(‘Pas sur une page de ticket Jira’);return;}
var key = m[1];
fetch(window.location.origin + ‘/rest/api/2/issue/’ + key + ‘?fields=summary’)
.then(function(r){return r.json();})
.then(function(data){
var summary = data.fields.summary;
var url = window.location.origin + ‘/browse/’ + key;
var md = ‘[\[’ + key + '\] ’ + summary + ‘](’ + url + ‘)’;
navigator.clipboard.writeText(md);
alert(‘Copié :\n’ + md);
})
.catch(function(e){alert('Erreur : ’ + e);});
})();

With the selected jira, clic on the bookmark and Paste in Supernote

Hi @derik,

Interesting workaround. We try our best to fetch link titles with our magic paste system but for certain providers like Jira they might require you to be logged in to get the accurate titles, hence why your workaround proved effective!