Compare commits

...

1 Commits

Author SHA1 Message Date
Lance Pioch b7482a3ffc The only way to resolve this without updating the package 2022-11-08 00:24:59 -05:00
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ interface Props {
function wrapProperties(value: unknown): any {
if (value === null || typeof value === 'string' || typeof value === 'number') {
return `<strong>${String(value)}</strong>`;
return `${String(value)}`;
}
if (isObject(value)) {