Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: isObjectId removed from schema to allow external assets to be added (fixes #108) #109

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions schema/component.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
},
"large": {
"type": "string",
"isObjectId": true,
"title": "Large",
"description": "The large sized image for desktop devices",
"_backboneForms": {
Expand All @@ -68,7 +67,6 @@
},
"small": {
"type": "string",
"isObjectId": true,
"title": "Small",
"description": "The small sized image for mobile devices",
"_backboneForms": {
Expand Down Expand Up @@ -96,7 +94,7 @@
"title": "Target attribute",
"description": "This targets where to open the link. Acceptable values are '_blank' (opens the linked document in a new window or tab), '_parent' (opens the linked document in the parent frame), '_top' (opens the linked document in the full body of the window) or '_self' (opens the linked document in the same frame as it was selected. If no value is set, the default is '_blank'.",
"enum": [
"",
"",
"_blank",
"_self",
"_parent",
Expand Down
Loading