Be able to shortcut copy the card ID
Sunny Chandi
Yes please! This should be muuch easier. Anyways we at Evermade created a workaround for this:
A bookmark that will copy the Favro card in format of XYZ-123123: Breadcrumb with one click.
Create a bookmark (name it as “FavroCopy”) and add this as URL:
javascript:(() => {const v = 'FavroCopy 1.0';const a = new URLSearchParams(window.location.search).get('card');const b = document.querySelector('.cardeditor .cardtitle textarea');if (!a || !b) {alert(
${v}\nOpen a card first
);return;}const s = ${a}: ${b.value}
;if (confirm(${s}\n${v}
)) {try {const t = document.createElement('input');t.value = s;document.body.appendChild(t);t.focus();t.select();document.execCommand('copy');t.remove();} catch (e) {console.error(e);t.remove();}}})();Go to Favro, open up ticket, click the button and confirm to copy it to clipboard
Niklas Swedenborg
It also would be helpful to be able to copy the Card ID and the card title at the same time. (E.g. XYZ-123123: Card Title)
Simon von Allmen
I'd imagine something like this, with the possibility to copy either the card id (as sting) or the url.
L
Linus Neuman
Has there been any work on this, this would help us a lot when adding the card to commit messages.
Sunny Chandi
Seems like a small request/change but at the moment this is just too complicated.
We also need to copy the id and refer it to in our commits and hour markings. Copying the ticket number / ID should be as simple as possible.
Please fix this :)
Dovidas Baranauskas
Merged in a post:
Make a new Button to copy the Card Id
Lars Raube
Currently ist hard to copy the ID of a card. Would be nice to have a button with "Copy Id" here.
Dovidas Baranauskas
Merged in a post:
Copy card ID
David Jensen
Currently clicking on the card id opens the url to the card, and its very hard to copy the ID from that url. The whole URL is selected when trying to mark just the ID.
Some easy way to copy the card ID would be very appreciated. Using either the current ID component or another way.
Tobias Pohl
Hey, you can copy the Card ID from the URL. We also need it for commit messages and do it this way :)