Skip to content

Commit

Permalink
fix(ns-json-schema-draft-4): fix schema keyword setter (#3559)
Browse files Browse the repository at this point in the history
  • Loading branch information
char0n authored Dec 19, 2023
1 parent 4e8c321 commit d26cb00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class JSONSchema extends ObjectElement {
}

set $schema($schema: StringElement | undefined) {
this.set('idProp', $schema);
this.set('$schema', $schema);
}

/**
Expand Down

0 comments on commit d26cb00

Please sign in to comment.