Skip to content

Commit

Permalink
fix: fixed issue of unable to call handle submit function on button c…
Browse files Browse the repository at this point in the history
…lick (openedx#656)
  • Loading branch information
sundasnoreen12 authored Oct 25, 2023
1 parent 0679022 commit a697119
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
5 changes: 4 additions & 1 deletion src/export-page/CourseExportPage.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
@import "./export-stepper/ExportStepper";
@import "./export-footer/ExportFooter";

.export {
.help-sidebar {
margin-top: 7.188rem;
}

.pgn__stepper-header-step-list {
flex-direction: column;
}
}
3 changes: 0 additions & 3 deletions src/export-page/export-stepper/ExportStepper.scss

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const AppConfigFormSaveButton = ({ intl, labelText }) => {
// cancelable: (optional) a Boolean indicating whether the event can be canceled. The default is false.
// cancelable: true cancels the untrusted event and safari, chrome cancel the untrusted event by default
formRef.current.dispatchEvent(new Event('submit', {
cancelable: true,
cancelable: true, bubbles: true,
}));
}, [formRef]);

Expand Down

0 comments on commit a697119

Please sign in to comment.