diff --git a/src/locales/en/en.json b/src/locales/en/en.json index a189d52fa..2ae7559e7 100644 --- a/src/locales/en/en.json +++ b/src/locales/en/en.json @@ -1041,7 +1041,7 @@ "about": "About {{ type }}" }, "attributes": { - "fullaccess": "Full access", + "title": "Credential Details", "label": "Attributes", "description": "Essential details shared by the issuer, which verify and describe key information in this credential.", "details": "Attribute details", diff --git a/src/ui/components/CardDetails/CardDetailsExpandAttributes/CardDetailsExpandAttributes.tsx b/src/ui/components/CardDetails/CardDetailsExpandAttributes/CardDetailsExpandAttributes.tsx index 5e9618e1c..955656342 100644 --- a/src/ui/components/CardDetails/CardDetailsExpandAttributes/CardDetailsExpandAttributes.tsx +++ b/src/ui/components/CardDetails/CardDetailsExpandAttributes/CardDetailsExpandAttributes.tsx @@ -26,7 +26,7 @@ const CardDetailsExpandAttributes = ({ slot="header" > - {i18n.t("tabs.credentials.details.attributes.fullaccess")} + {i18n.t("tabs.credentials.details.attributes.title")}
diff --git a/src/ui/components/CredentialDetailModule/components/CredentialContent.test.tsx b/src/ui/components/CredentialDetailModule/components/CredentialContent.test.tsx index 06fbdcad9..ca896fca1 100644 --- a/src/ui/components/CredentialDetailModule/components/CredentialContent.test.tsx +++ b/src/ui/components/CredentialDetailModule/components/CredentialContent.test.tsx @@ -250,7 +250,7 @@ describe("Creds content", () => { await waitFor(() => { expect(getByTestId("credential-attribute-details-modal")).toBeVisible(); - expect(getByText(EN_TRANSLATIONS.tabs.credentials.details.attributes.fullaccess)).toBeVisible(); + expect(getByText(EN_TRANSLATIONS.tabs.credentials.details.attributes.title)).toBeVisible(); }); }); });