[Moved to openedx/frontend-app-course-authoring] A library of high-level components for content handling (viewing, editing, etc. of HTML, video, problems, etc.), to be shared by multiple MFEs.
Video selection gallery in video editor is not scrollable
The default scrolling for the full screen modal was disabled and <Scrollable/> component was added inside the modal. however, the modal content scrollbar was still disabled. This PR moves the <Scrollable/> component as a wrapper of the modal body. This change impacts the video selection gallery, image selection and edit modal, and source code editor modal.
Testing
Open a html block
Click on the Image button in the toolbar
Check that you can scroll through the loaded images
Click on an image to add
Check that everything is function in the image edit screen.
Click "Cancel"
Click on the HTML button in the toolbar
Add a bunch of text
Confirm that the modal expands to its max height then adds scroll bar if it exceed screen height
JIRA Ticket: TNL-11615
The default scrolling for the full screen modal was disabled and
<Scrollable/>
component was added inside the modal. however, the modal content scrollbar was still disabled. This PR moves the<Scrollable/>
component as a wrapper of the modal body. This change impacts the video selection gallery, image selection and edit modal, and source code editor modal.Testing