diff --git a/dashboard/src/components/Section/MiscSection.tsx b/dashboard/src/components/Section/MiscSection.tsx
index f47d64143..bd13c5399 100644
--- a/dashboard/src/components/Section/MiscSection.tsx
+++ b/dashboard/src/components/Section/MiscSection.tsx
@@ -18,8 +18,10 @@ export const getMiscSection = ({
const miscInfos: SubsectionLink[] = Object.entries(misc).map(
([fieldKey, fieldValue]) => {
let stringField = fieldValue.toString();
+ let isObjectField = false;
if (typeof fieldValue === 'object') {
stringField = JSON.stringify(fieldValue);
+ isObjectField = true;
}
const isUrlResult = isUrl(stringField);
@@ -36,9 +38,11 @@ export const getMiscSection = ({
key: fieldKey,
unformattedTitle: fieldKey,
linkText: (
-
+ <>
+
),
link: isUrlResult ? stringField : undefined,
+ copyValue: isObjectField ? stringField : undefined,
};
},
);