How can I create a “copy to clipboard” action/workflow?
I want users to copy something… thanks!
How can I create a “copy to clipboard” action/workflow?
I want users to copy something… thanks!
You can use a custom js action with the following code
navigator.clipboard.writeText('Copy this inside the clipoard')
Be aware that for security reasons, this can only be called after a user action (a click for example)