From e3cf70d3a84e986ca0366b77861ca43615ccee08 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 7 Nov 2025 13:16:21 +0100 Subject: [PATCH] :sparkles: Add URI to the report.txt (#7709) --- frontend/src/app/main/ui/static.cljs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/main/ui/static.cljs b/frontend/src/app/main/ui/static.cljs index 2f6da79171..adf9f0d5f9 100644 --- a/frontend/src/app/main/ui/static.cljs +++ b/frontend/src/app/main/ui/static.cljs @@ -11,6 +11,7 @@ [app.common.data :as d] [app.common.pprint :as pp] [app.common.uri :as u] + [app.config :as cf] [app.main.data.auth :refer [is-authenticated?]] [app.main.data.common :as dcm] [app.main.data.event :as ev] @@ -311,9 +312,10 @@ trace (:app.main.errors/trace data) instance (:app.main.errors/instance data)] (with-out-str - (println "Hint: " (or (:hint data) (ex-message instance) "--")) - (println "Prof ID:" (str (or profile-id "--"))) - (println "Team ID:" (str (or team-id "--"))) + (println "Hint: " (or (:hint data) (ex-message instance) "--")) + (println "Prof ID: " (str (or profile-id "--"))) + (println "Team ID: " (str (or team-id "--"))) + (println "URI: " cf/public-uri) (when-let [file-id (:file-id data)] (println "File ID:" (str file-id)))