We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48bfeb5 commit 3e700efCopy full SHA for 3e700ef
tools/playground.html
@@ -485,7 +485,7 @@
485
result += `<span class="description">
486
${typeof command.command !== 'undefined' ? command.command : ''}
487
${typeof command.property !== 'undefined' ? command.property + ': ' : ''}
488
- ${typeof command.value === 'string' ? command.value : ''}
+ ${typeof command.value !== 'undefined' && typeof command.value !== 'object' ? command.value : ''}
489
${typeof command.value === 'object' ? Object.entries(command.value).map(i => i[0] + ': ' + i[1]).join(', ') : ''}
490
</span>`;
491
}
0 commit comments