-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 53
-
Component/s: Registries
-
Sprint:nxNest Sprint 9.1.3
-
Story Points:1
The example provided for Document Facets in Registries is:
{ facets: [ { id: "MyFirstFacet", description: "This is my first facet", }, { id: "MySecondFacet", label: "My Second Facet", description: "This is my second facet", // since Nuxeo 5.5, a facet can hold schemas schemas: ["schemas_defined_for_facets"], } ] }
It is missing quotes, so there are errors displayed to the user when they insert it.
It should be something like:
{ "facets": [ { "id": "MyFirstFacet", "description": "This is my first facet", }, [...] ] }
- depends on
-
NXS-3769 Release Studio 55.1
- Resolved