Comment on page
v1.59.0
This version changed the
transient
option of Clipboard
to concealed
.The
transient
option still work, but is now marked as deprecated and may be removed in a future version. You will get helpful hints in your code editor to migrate your extension, and as usual we provide automated migrations to help with the transition.To migrate your extension manually, you need to ensure that all
Clipboard.copy
that specify transient
are updated as follows:Clipboard.copy(content, { transient: true });
// becomes
Clipboard.copy(content, { concealed: true });
<Action.CopyToClipboard ... transient />
// becomes
<Action.CopyToClipboard ... concealed />
Last modified 1mo ago