diff --git a/src/qqq/components/databags/DataBagPreview.tsx b/src/qqq/components/databags/DataBagPreview.tsx
index e0f3a04..4dd12d6 100644
--- a/src/qqq/components/databags/DataBagPreview.tsx
+++ b/src/qqq/components/databags/DataBagPreview.tsx
@@ -107,7 +107,7 @@ function DataBagPreview({data, json}: Props): JSX.Element
childIsObject && openPreviewDivs.has(divId) && {previewObject(object[key], `${path}.${key}`)}
}
{
- !childIsObject && {object[key]}
+ !childIsObject && {String(object[key])}
}