From 3592f77339922f63a9b5185cb19c3ce85514041e Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin Date: Tue, 2 Jun 2026 21:25:19 +0100 Subject: [PATCH] copy link --- website/src/js/channel-preview.jsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/src/js/channel-preview.jsc b/website/src/js/channel-preview.jsc index fc3af9f6f2..5f93683b78 100644 --- a/website/src/js/channel-preview.jsc +++ b/website/src/js/channel-preview.jsc @@ -980,11 +980,11 @@ function renderDesktopConversion(container, channelLink, showAppBadges) { const copyAction = document.createElement('p'); copyAction.className = 'simplex-preview-copy-action'; const copyLink = document.createElement('a'); - copyLink.textContent = 'Copy link'; + copyLink.textContent = 'copy link'; copyLink.addEventListener('click', function() { navigator.clipboard.writeText(channelLink).then(function() { copyLink.textContent = 'Copied!'; - setTimeout(function() { copyLink.textContent = 'Copy link'; }, 2000); + setTimeout(function() { copyLink.textContent = 'copy link'; }, 2000); }); }); copyAction.appendChild(document.createTextNode('Or '));