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 a content reviewer (read only access) go to a page in the CMS in edit mode, and go to the Settings tab. The bell icon triggers the following error, this is because it is not getting the Page ID, the #content-review__dialog-wrapper grabs the page ID by looking for an input field:
ContentReviewForm.js const id = $('form.cms-edit-form :input[name=ID]').val();
but as a content reviewer with read only access, and readonly fields are not input fields.
The text was updated successfully, but these errors were encountered:
When a content reviewer (read only access) go to a page in the CMS in edit mode, and go to the Settings tab. The bell icon triggers the following error, this is because it is not getting the Page ID, the
#content-review__dialog-wrapper
grabs the page ID by looking for an input field:ContentReviewForm.js
const id = $('form.cms-edit-form :input[name=ID]').val();
but as a content reviewer with read only access, and readonly fields are not input fields.
The text was updated successfully, but these errors were encountered: