Skip to content

Commit 15636a8

Browse files
committed
chore(ui): Update button text
Use "view" instead of "see"
1 parent efed81c commit 15636a8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

e2e/grades/grades-workflow.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ test.describe.serial("Grades workflow", () => {
506506
// Go to the grade page
507507
await page
508508
.getByRole("link", {
509-
name: `See grade obtained in ${laboratoryName} laboratory`
509+
name: `View grade obtained in ${laboratoryName} laboratory`
510510
})
511511
.click();
512512

src/screens/course-page/laboratories/components/CourseLaboratoriesTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ export const CourseLaboratoriesTable = ({
7979
<BookOpenCheck className="mr-2" /> Complete
8080
</Link>
8181
<Link
82-
aria-label={`See grade obtained in ${labInfo.name} laboratory`}
82+
aria-label={`View grade obtained in ${labInfo.name} laboratory`}
8383
className={buttonVariants({ variant: "default" })}
8484
to={`/courses/${courseUUID}/laboratories/${labInfo.uuid}/my-grade`}
8585
>
86-
<GraduationCapIcon className="mr-2" /> See grade
86+
<GraduationCapIcon className="mr-2" /> View grade
8787
</Link>
8888
</>
8989
);

0 commit comments

Comments
 (0)