registration: Fix string "true" in extension v2 schema
Extension tags required value was the string value "true", but really should be the boolean value true. Bug: T257898 Change-Id: I6372fc55b864e898268c6df3f7cdead03b37d53f
This commit is contained in:
parent
eedfbbdaaa
commit
3177547540
1 changed files with 1 additions and 1 deletions
|
|
@ -1181,7 +1181,7 @@
|
|||
"name": {
|
||||
"type": "string",
|
||||
"description": "The name of the extension tag",
|
||||
"required": "true"
|
||||
"required": true
|
||||
},
|
||||
"handler": {
|
||||
"description": "An object factory specification of a class extending Wikimedia\\Parsoid\\Ext\\ExtensionTagHandler"
|
||||
|
|
|
|||
Loading…
Reference in a new issue