diff --git a/src_assets/common/assets/web/troubleshooting.html b/src_assets/common/assets/web/troubleshooting.html
index 13987a9b..0df895f4 100644
--- a/src_assets/common/assets/web/troubleshooting.html
+++ b/src_assets/common/assets/web/troubleshooting.html
@@ -135,10 +135,21 @@
@@ -677,6 +688,15 @@
clickedApplyBanner() {
this.showApplyMessage = false;
},
+ copyClientUuid(uuid) {
+ if (!uuid) {
+ return;
+ }
+
+ navigator.clipboard.writeText(uuid).catch(() => {
+ window.prompt("Copy client UUID", uuid);
+ });
+ },
copyLogs() {
// Copy the filtered view if a filter is active.
navigator.clipboard.writeText(this.actualLogs);