Minor update to formatProperty()

This commit is contained in:
billz
2025-05-11 01:21:08 -07:00
parent ca8224474b
commit 2d39c96153

View File

@@ -584,7 +584,7 @@ function formatProperty(prop) {
return Object.entries(item)
.map(([key, value]) => `${key}: ${value}`)
.join('<br/>');
}).join('<br/><br/>');
}).join('<br/>');
}
return prop.map(line => `${line}<br/>`).join('');
}