Skip to content

Commit

Permalink
docs: ensure clipboard copies the correct command from snippet (#20619)
Browse files Browse the repository at this point in the history
closes #20618
  • Loading branch information
atharvaunde authored Oct 26, 2024
1 parent 006b7fd commit 810e0c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docs/src/components/home/Entry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
function copy () {
isCopying.value = true
navigator.clipboard.writeText('pnpm create vuetify')
navigator.clipboard.writeText(`${randomPackage} create vuetify`)
setTimeout(() => {
isCopying.value = false
Expand Down

0 comments on commit 810e0c3

Please sign in to comment.