refactor: Update title in ImportStepperModal (#2658)

Updates the title of one card from "Import Details" to "Analysis Details"
This commit is contained in:
Chris Chávez
2025-11-17 11:51:44 -05:00
committed by GitHub
parent 0f58329cb4
commit 2e7a29465f
2 changed files with 3 additions and 3 deletions

View File

@@ -151,8 +151,8 @@ const messages = defineMessages({
},
importCourseDetailsTitle: {
id: 'course-authoring.library-authoring.import-course.review-details.import-details.title',
defaultMessage: 'Import Details',
description: 'Title of the card for the import details of a imported course.',
defaultMessage: 'Analysis Details',
description: 'Title of the card for the analysis details of a imported course.',
},
importCourseDetailsLoadingBody: {
id: 'course-authoring.library-authoring.import-course.review-details.import-details.loading.body',

View File

@@ -126,7 +126,7 @@ describe('<ImportStepperModal />', () => {
)).toBeInTheDocument());
expect(screen.getByText('Analysis Summary')).toBeInTheDocument();
expect(screen.getByText('Import Details')).toBeInTheDocument();
expect(screen.getByText('Analysis Details')).toBeInTheDocument();
// The import details is loading
expect(screen.getByText('The selected course is being analyzed for import and review')).toBeInTheDocument();
});