mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Revise help text on team members page (#1179)
* Revise help text on team members page * Update Cypress test
This commit is contained in:
parent
763e69bc81
commit
c51ef4447d
2 changed files with 3 additions and 2 deletions
|
|
@ -63,7 +63,8 @@ if (Cypress.env("FLEET_TIER") === "basic") {
|
|||
});
|
||||
// Access the Settings - Team details page
|
||||
cy.findByText(/apples/i).click();
|
||||
cy.findByText(/Add and remove members from Apples/i).should("exist");
|
||||
cy.findByText(/apples/i).should("exist");
|
||||
cy.findByText(/manage users with global access here/i).should("exist");
|
||||
|
||||
// See the “Team” section in the create user modal. This modal is summoned when the “Create user” button is selected
|
||||
cy.visit("/settings/organization");
|
||||
|
|
|
|||
|
|
@ -228,7 +228,7 @@ const MembersPage = (props: IMembersPageProps): JSX.Element => {
|
|||
return (
|
||||
<div className={baseClass}>
|
||||
<p className={`${baseClass}__page-description`}>
|
||||
Add and remove members from {team.name}.{" "}
|
||||
Users can either be a member of team(s) or a global user.{" "}
|
||||
<Link to={PATHS.ADMIN_USERS}>Manage users with global access here</Link>
|
||||
</p>
|
||||
<TableContainer
|
||||
|
|
|
|||
Loading…
Reference in a new issue