mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
🐛 Fixed validation error when adding tag from PSM
refs #10438 - Relaxed validation rules for tag.slug property to allow 'null' values
This commit is contained in:
parent
c2b3520652
commit
fa42a71181
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@
|
|||
"maxLength": 191
|
||||
},
|
||||
"slug": {
|
||||
"type": "string",
|
||||
"type": ["string", "null"],
|
||||
"maxLength": 191
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue