diff --git a/cypress/e2e/my-dspace.cy.ts b/cypress/e2e/my-dspace.cy.ts index 159bb4f5e6..7f30eeb9bb 100644 --- a/cypress/e2e/my-dspace.cy.ts +++ b/cypress/e2e/my-dspace.cy.ts @@ -84,7 +84,7 @@ describe('My DSpace page', () => { cy.url().should('include', '/mydspace'); // Close any open notifications, to make sure they don't get in the way of next steps - cy.get('[data-dismiss="alert"]').click({ multiple: true }); + cy.get('[data-bs-dismiss="alert"]').click({ multiple: true }); // This is the GET command that will actually run the search cy.intercept('GET', '/server/api/discover/search/objects*').as('search-results'); diff --git a/cypress/e2e/submission.cy.ts b/cypress/e2e/submission.cy.ts index d46bb9fc0d..01c028745f 100644 --- a/cypress/e2e/submission.cy.ts +++ b/cypress/e2e/submission.cy.ts @@ -95,7 +95,7 @@ describe('New Submission page', () => { // A success alert should be visible cy.get('ds-notification div.alert-success').should('be.visible'); // Now, dismiss any open alert boxes (may be multiple, as tests run quickly) - cy.get('[data-dismiss="alert"]').click({ multiple: true }); + cy.get('[data-bs-dismiss="alert"]').click({ multiple: true }); // This is the GET command that will actually run the search cy.intercept('GET', '/server/api/discover/search/objects*').as('search-results'); diff --git a/src/app/access-control/group-registry/group-form/members-list/members-list.component.html b/src/app/access-control/group-registry/group-form/members-list/members-list.component.html index 44a3775c05..072b836d23 100644 --- a/src/app/access-control/group-registry/group-form/members-list/members-list.component.html +++ b/src/app/access-control/group-registry/group-form/members-list/members-list.component.html @@ -83,7 +83,7 @@