diff --git a/src/components/schema-table.js b/src/components/schema-table.js
index 1df36ca1..54f49514 100644
--- a/src/components/schema-table.js
+++ b/src/components/schema-table.js
@@ -245,7 +245,7 @@ export default class SchemaTable extends LitElement {
${displaySchemaLink
? html`
this.scrollToSchemaComponentByName(displaySchemaLink)}'>
- ${dataType === 'array' ? '[' : ''}${detailObjType}${dataType === 'array' ? ']' : ''}
+ ${dataType === 'array' ? '[' : ''}${detailObjType}${dataType === 'array' ? ']' : ''}
`
: html`
${(data['::type'] || '').includes('xxx-of') ? '' : `${dataType === 'array' ? '[' : ''}${detailObjType}${dataType === 'array' ? ']' : ''}`}
`
}