We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a802fa commit 9804d3dCopy full SHA for 9804d3d
1 file changed
packages/core/src/backend/schema/jsonschema.ts
@@ -54,10 +54,6 @@ class SchemaBuilder {
54
if (node.meta?.doc || node.meta?.defaultValue !== undefined) return node.meta;
55
if (node.kind === "optional") return this.findMeta(node.attrs.node);
56
if (node.kind === "repeat") return this.findMeta(node.attrs.node);
57
- if (node.kind === "sequence") {
58
- const nonLiteral = node.attrs.nodes.find((n) => n.kind !== "literal");
59
- if (nonLiteral) return this.findMeta(nonLiteral);
60
- }
61
return node.meta;
62
}
63
0 commit comments