fix(core): update

This commit is contained in:
2020-06-01 13:22:54 +00:00
parent ec1660cab5
commit 6a6d782288
3 changed files with 2 additions and 12 deletions

View File

@ -126,15 +126,7 @@ export class WccProperties extends LitElement {
returnArray.push(
html`
<div class="property">
${key} / ${classProperties.get(key).type.name} /
<pre>
${(() => {
const result = this.selectedInstance
? JSON.stringify(this.selectedInstance[key], null, 2)
: null;
return result;
})()}</pre
>
${key} / ${classProperties.get(key).type.name}
</div>
`
);