diff --git a/components/status/StatusActionsMore.vue b/components/status/StatusActionsMore.vue index e116073c..b1b9d2c0 100644 --- a/components/status/StatusActionsMore.vue +++ b/components/status/StatusActionsMore.vue @@ -42,6 +42,12 @@ const copyLink = async (status: mastodon.v1.Status) => { await clipboard.copy(url) } +const copyOriginalLink = async (status: mastodon.v1.Status) => { + const url = status.url + if (url) + await clipboard.copy(url) +} + const { share, isSupported: isShareSupported } = useShare() const shareLink = async (status: mastodon.v1.Status) => { const url = getPermalinkUrl(status) @@ -169,6 +175,13 @@ const showFavoritedAndBoostedBy = () => { @click="copyLink(status)" /> + +