fix(editor): Schema view shows checkbox in case of empty data (#4889)

* fix(editor): Schema view show nothing in case of empty data

* fix(editor): Schema view test for empty data
This commit is contained in:
Csaba Tuncsik
2022-12-12 10:08:29 +01:00
committed by GitHub
parent 07b2f7678c
commit b0c158c64f
4 changed files with 75 additions and 49 deletions

View File

@@ -1,6 +1,6 @@
// Vitest Snapshot v1
exports[`RunDataJsonSchema.vue > renders json schema properly 1`] = `
exports[`RunDataJsonSchema.vue > renders schema for data 1`] = `
<div>
<div
class="_schemaWrapper_1w572_1"
@@ -251,3 +251,13 @@ exports[`RunDataJsonSchema.vue > renders json schema properly 1`] = `
</div>
</div>
`;
exports[`RunDataJsonSchema.vue > renders schema for empty data 1`] = `
<div>
<div
class="_schemaWrapper_1w572_1"
>
<div />
</div>
</div>
`;