Fix copied value

This commit is contained in:
Jonathan Staab 2023-09-04 13:05:52 -07:00
parent 21257041b8
commit f89b9d1ff6

View File

@ -13,7 +13,7 @@
$: displayValue = showEncoded && encode ? encode(value) : value
const copy = () => {
copyToClipboard(value)
copyToClipboard(displayValue)
toast.show("info", `${label} copied to clipboard!`)
}