From 02277be602fff6439b8e6263b2e68402df601a01 Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Tue, 17 Aug 2021 16:10:00 +0300 Subject: [PATCH] [#12451] Fix copy icon in message actions --- src/status_im/ui/screens/status/views.cljs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/status_im/ui/screens/status/views.cljs b/src/status_im/ui/screens/status/views.cljs index cb0b03b2f4..71501cc879 100644 --- a/src/status_im/ui/screens/status/views.cljs +++ b/src/status_im/ui/screens/status/views.cljs @@ -78,7 +78,8 @@ (defn on-long-press-fn [on-long-press content image] (on-long-press (when-not image - [{:on-press #(react/copy-to-clipboard + [{:id :copy + :on-press #(react/copy-to-clipboard (components.reply/get-quoted-text-with-mentions (get content :parsed-text))) :label (i18n/label :t/sharing-copy-to-clipboard)}])))