diff --git a/frontend/src/pages/files-explorer-page.vue b/frontend/src/pages/files-explorer-page.vue
index 7196acb4c..a56123a80 100644
--- a/frontend/src/pages/files-explorer-page.vue
+++ b/frontend/src/pages/files-explorer-page.vue
@@ -110,6 +110,17 @@
+
+
+
+
+ Copy UUID
+
+
{
// @ts-ignore
selectedFileHealth.value = undefined;
};
+
+const copyDataToClipboard = async (data: string): Promise => {
+ await copyToClipboard(data);
+};