Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to the
clients/core/src/managementConsole
directory, focusing on improving course management and configuration. The most important changes involve the addition of new components for editing and deleting courses, updates to existing components, and enhancements to the mailing configuration functionality.Course Management Enhancements:
clients/core/src/managementConsole/ManagementConsole.tsx
: Added course ID management and navigation logic to handle selected courses and path changes. [1] [2] [3]New Components:
clients/core/src/managementConsole/courseOverview/components/EditCourseDialog.tsx
: IntroducedEditCourseDialog
component for editing course details.clients/core/src/managementConsole/courseOverview/components/EditCourseDropdown.tsx
: AddedEditCourseDropdown
component for course actions including edit and delete.Updates to Existing Components:
clients/core/src/managementConsole/PhaseMapping/ExternalSidebars/CourseConfiguratorSidebar.tsx
: Changed the icon and title for the course configurator sidebar item. [1] [2]clients/core/src/managementConsole/courseConfigurator/handlers/useDeleteConfirmation.tsx
: Updated import forDeleteConfirmation
component and modified the delete message. [1] [2]clients/core/src/managementConsole/courseOverview/CourseOverviewPage.tsx
: AddedEditCourseDropdown
to the course overview page. [1] [2]Mailing Configuration Enhancements:
clients/core/src/managementConsole/mailingConfig/MailingConfigPage.tsx
: Added loading state and spinner to the save button in the mailing configuration page. [1] [2] [3] [4]clients/core/src/managementConsole/mailingConfig/hooks/useSaveMailingData.ts
: Introduced optionalonSuccess
callback for the mailing data save hook.