Fix associated roles table (#2136)

This commit is contained in:
Jenny 2022-02-23 12:46:52 -05:00 committed by GitHub
parent ecd65b3ce7
commit 72268bb896
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -554,7 +554,7 @@ export default class RealmSettingsPage {
} }
shouldRemoveEventFromEventListener() { shouldRemoveEventFromEventListener() {
cy.get(this.eventListenerRemove).last().click(); cy.get(this.eventListenerRemove).last().click({ force: true });
cy.findByTestId(this.eventListenersSaveBtn).click({ force: true }); cy.findByTestId(this.eventListenersSaveBtn).click({ force: true });
cy.get(this.alertMessage).should( cy.get(this.alertMessage).should(
"be.visible", "be.visible",

View file

@ -234,7 +234,7 @@ export const AssociatedRolesTab = ({
ariaLabelKey="roles:roleList" ariaLabelKey="roles:roleList"
searchPlaceholderKey="roles:searchFor" searchPlaceholderKey="roles:searchFor"
canSelectAll canSelectAll
isPaginated={isInheritedHidden} isPaginated
onSelect={(rows) => { onSelect={(rows) => {
setSelectedRows([ setSelectedRows([
...rows.map((r) => { ...rows.map((r) => {

View file

@ -79,8 +79,8 @@ export default {
lastName: "Last name", lastName: "Last name",
firstName: "First name", firstName: "First name",
clearAllFilters: "Clear all filters", clearAllFilters: "Clear all filters",
noRolesAssociated: "No roles where associated", noRolesAssociated: "No associated roles",
noRolesAssociatedInstructions: noRolesAssociatedInstructions:
"To add roles to the this role press that 'Add role' button", "To add roles to this role press the 'Add role' button",
}, },
}; };