diff options
author | 2022-04-04 00:42:33 +0200 | |
---|---|---|
committer | 2022-04-04 00:42:33 +0200 | |
commit | bab92ef84f66372df40ce385c2949518ed158427 (patch) | |
tree | 4a2e9966f9b9e0494fbeb0dc1aa80280cd3390f4 /src/tools/hash-text/hash-text.vue | |
parent | 4ca5fce911c3312d56bca1ffba863b2f37841c9e (diff) | |
download | it-tools-bab92ef84f66372df40ce385c2949518ed158427.tar.gz it-tools-bab92ef84f66372df40ce385c2949518ed158427.tar.zst it-tools-bab92ef84f66372df40ce385c2949518ed158427.zip |
fix(hash-text): correct copy message
Diffstat (limited to 'src/tools/hash-text/hash-text.vue')
-rw-r--r-- | src/tools/hash-text/hash-text.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/hash-text/hash-text.vue b/src/tools/hash-text/hash-text.vue index 45364a3..1bec34f 100644 --- a/src/tools/hash-text/hash-text.vue +++ b/src/tools/hash-text/hash-text.vue @@ -65,7 +65,7 @@ const clearText = ref('Lorem ipsum dolor sit amet, consectetur adipiscing elit. const algo = ref<keyof typeof algos>('SHA256') const hashedText = computed(() => algos[algo.value](clearText.value).toString()) -const { copy } = useCopy({ source: hashedText, text: 'Token copied to the clipboard' }) +const { copy } = useCopy({ source: hashedText, text: 'Hash copied to the clipboard' }) </script> <style lang="scss" scoped> |