Hey Asana Team,
I have a feature request, which will have a big increase in productivity.
A copied task link is so meaningless. Would be great if its kind an a tag.
Here is just a quick pseudo code:
function copyTaskInfoToClipboard() {
const itemData = {
'text/plain': task.title,
'text/html': `<a href="${task.link}">${task.title}</a>`,
};
const cpItem = new ClipboardItem(itemData);
navigator.clipboard.write([cpItem]); // .then(() => some notification that link is copied)
}
Best regards
Peter