The only way to resolve this without updating the package
This commit is contained in:
parent
032e4f2e31
commit
b7482a3ffc
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ interface Props {
|
||||||
|
|
||||||
function wrapProperties(value: unknown): any {
|
function wrapProperties(value: unknown): any {
|
||||||
if (value === null || typeof value === 'string' || typeof value === 'number') {
|
if (value === null || typeof value === 'string' || typeof value === 'number') {
|
||||||
return `<strong>${String(value)}</strong>`;
|
return `${String(value)}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isObject(value)) {
|
if (isObject(value)) {
|
||||||
|
|
Loading…
Reference in a new issue