Skip to content

Commit 2e7a294

Browse files
authored
refactor: Update title in ImportStepperModal (#2658)
Updates the title of one card from "Import Details" to "Analysis Details"
1 parent 0f58329 commit 2e7a294

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/library-authoring/import-course/messages.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ const messages = defineMessages({
151151
},
152152
importCourseDetailsTitle: {
153153
id: 'course-authoring.library-authoring.import-course.review-details.import-details.title',
154-
defaultMessage: 'Import Details',
155-
description: 'Title of the card for the import details of a imported course.',
154+
defaultMessage: 'Analysis Details',
155+
description: 'Title of the card for the analysis details of a imported course.',
156156
},
157157
importCourseDetailsLoadingBody: {
158158
id: 'course-authoring.library-authoring.import-course.review-details.import-details.loading.body',

src/library-authoring/import-course/stepper/ImportStepperPage.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ describe('<ImportStepperModal />', () => {
126126
)).toBeInTheDocument());
127127

128128
expect(screen.getByText('Analysis Summary')).toBeInTheDocument();
129-
expect(screen.getByText('Import Details')).toBeInTheDocument();
129+
expect(screen.getByText('Analysis Details')).toBeInTheDocument();
130130
// The import details is loading
131131
expect(screen.getByText('The selected course is being analyzed for import and review')).toBeInTheDocument();
132132
});

0 commit comments

Comments
 (0)