From 9c1bd17bd5affac95fb7b8f1c058f3ac3e1cc623 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Fri, 29 Sep 2023 10:02:55 -0400 Subject: [PATCH] fix(RootStore): add missing copyToClipboard function --- ui/app/AppLayouts/Chat/stores/RootStore.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/app/AppLayouts/Chat/stores/RootStore.qml b/ui/app/AppLayouts/Chat/stores/RootStore.qml index ac6c3e3ef4..653d09bdce 100644 --- a/ui/app/AppLayouts/Chat/stores/RootStore.qml +++ b/ui/app/AppLayouts/Chat/stores/RootStore.qml @@ -79,6 +79,10 @@ QtObject { return chatCommunitySectionModule.getChatContentModule() } + function copyToClipboard(text) { + globalUtils.copyToClipboard(text) + } + // Contact requests related part property var contactRequestsModel: chatCommunitySectionModule.contactRequestsModel