Skip to content

Commit

Permalink
Implement Hostgroup member tabs
Browse files Browse the repository at this point in the history
Implement host/hostgroup member tabs for Host groups

Fixes: #543

Signed-off-by: Mark Reynolds <[email protected]>
  • Loading branch information
mreynolds389 committed Sep 9, 2024
1 parent a0cb3c4 commit e8ed5e4
Show file tree
Hide file tree
Showing 27 changed files with 1,657 additions and 146 deletions.
2 changes: 1 addition & 1 deletion cypress/support/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Cypress.Commands.add("userCleanup", () => {

Cypress.Commands.add("createTestUser", (username: string) => {
cy.visit(Cypress.env("base_url") + "/active-users");
cy.wait(4000);
cy.wait(2000);
cy.get("body").then(($body) => {
if ($body.find("tr[id=" + username + "]").length) {
return;
Expand Down
2 changes: 2 additions & 0 deletions src/components/Members/MembersExternal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,8 @@ const MembersExternal = (props: PropsToMembersExternal) => {
);
// Refresh
props.onRefreshData();
// Disable 'remove' button
setExternalsSelected([]);
// Close modal
setShowDeleteModal(false);
// Back to page 1
Expand Down
Loading

0 comments on commit e8ed5e4

Please sign in to comment.