From e3f6bd84545bee7f032cfea63a8ad600688b537c Mon Sep 17 00:00:00 2001 From: User0149 Date: Sat, 29 Nov 2025 02:33:44 +1100 Subject: [PATCH] fixed clipboard copy (issue #817) --- client/src/components/timetable/ExpandedEventView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/timetable/ExpandedEventView.tsx b/client/src/components/timetable/ExpandedEventView.tsx index d69934e00..8a176a76e 100644 --- a/client/src/components/timetable/ExpandedEventView.tsx +++ b/client/src/components/timetable/ExpandedEventView.tsx @@ -421,7 +421,7 @@ const ExpandedEventView: React.FC = ({ { - navigator.clipboard.writeText(btoa(JSON.stringify(eventPeriod))); + navigator.clipboard.writeText(url); setAutoVisibility(true); setAlertMsg('Copied to clipboard!'); }}