Fix associated roles table (#2136)
This commit is contained in:
parent
ecd65b3ce7
commit
72268bb896
3 changed files with 4 additions and 4 deletions
|
@ -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",
|
||||||
|
|
|
@ -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) => {
|
||||||
|
|
|
@ -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",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue