diff --git a/pages/fdo/show/[prefix]/sandbox.tsx b/pages/fdo/show/[prefix]/sandbox.tsx
index e1281ab74112bccb3a0603f8e4b204d61e1eef48..d7feb143ad8fa7d5009dcd1b38082a4ec9328dd2 100644
--- a/pages/fdo/show/[prefix]/sandbox.tsx
+++ b/pages/fdo/show/[prefix]/sandbox.tsx
@@ -146,7 +146,7 @@ const ShowFDO = () => {
               <Avatar sx={{ bgcolor: blue[500] }} variant="rounded">
                 <AssignmentIcon />
               </Avatar>
-              <Typography variant="h6" gutterBottom> {displayName} </Typography>
+              <Typography variant="h5" gutterBottom> {displayName} </Typography>
             </Stack><br/>
           <Details/>
          </Item>
diff --git a/src/components/fdos/details.tsx b/src/components/fdos/details.tsx
index 1dfb055eeb62be4af2f817f3f9bbef4ad3bc9ccc..eec5620fa506f81eb21281bb6e8a8bf0d6a2c77e 100644
--- a/src/components/fdos/details.tsx
+++ b/src/components/fdos/details.tsx
@@ -20,20 +20,23 @@ const StyledTableCell = styled(TableCell)(({ theme }) => ({
     ...theme.applyStyles('dark', {
       backgroundColor: '#262c32'
     })
-    
+
   }
 }))
 
 const StyledTableRow = styled(TableRow)(({ theme }) => ({
-  '&:nth-of-type(odd)': {
-    backgroundColor: theme.palette.action.hover  },
+  '&:nth-of-type(odd)': { backgroundColor: theme.palette.action.hover },
   // hide last border
   '&:last-child td, &:last-child th': {
-    border: 0 
+    border: 0
   }
 }))
 
-const info = 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.'
+const genInfo = 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.'
+const typeInfo = 'CETTS'
+const repoInfo = 'LinkAhead'
+const dataSpInfo = 'RWTH'
+const techInfo = 'EDC'
 
 function createData (
   category: string,
@@ -45,11 +48,11 @@ function createData (
 }
 
 const rows = [
-  createData('Desription:', info, ''),
-  createData('Type:', 'CETTS', 'xx'),
-  createData('Repository:', 'LinkAhead', 'xx'),
-  createData('Dataspace:', 'RWTH', 'xx'),
-  createData('Technology:', 'EDC', 'xx')
+  createData('Desription:', genInfo, ''),
+  createData('Type:', typeInfo, ''),
+  createData('Repository:', repoInfo, 'xx'),
+  createData('Dataspace:', dataSpInfo, 'xx'),
+  createData('Technology:', techInfo, 'xx')
 
 ]