Skip to content

Commit

Permalink
Fix: Title is required to set notify popup dialog label (fixes #294) (#…
Browse files Browse the repository at this point in the history
…295)

* Set properties.schema item title to required

* set item title as required in component.schema
  • Loading branch information
kirsty-hames authored Mar 4, 2024
1 parent e8305ca commit eacdcd8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion properties.schema
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
"required": true,
"default": "",
"inputType": "Text",
"validators": [],
"validators": ["required"],
"help": "Title displayed in the popup",
"translatable": true
},
Expand Down
4 changes: 4 additions & 0 deletions schema/component.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@
"title": "Items",
"items": {
"type": "object",
"default": {},
"required": [
"title"
],
"properties": {
"title": {
"type": "string",
Expand Down

0 comments on commit eacdcd8

Please sign in to comment.