You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a new event or series, certain metadata fields can be required, meaning they have to have a value before the user can proceed to the next step. Usually, only the title field for the common metadata catalog is required, but users can change that in the backend.
Unfortunately, our validation for metadata fields is hardcoded and as such only checks if there is a value for title. Should another field be marked as required, this will be correctly shown in the ui, but will not be respected by validation. For example, `description* may also be marked as required, but the user can proceed to the next step without having entered any description.
To properly solve this, we would need to make our static validation dynamic, based on the metadata catalogs schemas from the backend.
The text was updated successfully, but these errors were encountered:
When creating a new event or series, certain metadata fields can be required, meaning they have to have a value before the user can proceed to the next step. Usually, only the
title
field for the common metadata catalog is required, but users can change that in the backend.Unfortunately, our validation for metadata fields is hardcoded and as such only checks if there is a value for title. Should another field be marked as required, this will be correctly shown in the ui, but will not be respected by validation. For example, `description* may also be marked as required, but the user can proceed to the next step without having entered any description.
To properly solve this, we would need to make our static validation dynamic, based on the metadata catalogs schemas from the backend.
The text was updated successfully, but these errors were encountered: