Skip to content

Commit 4128819

Browse files
authored
Add/edit user modal (#41659)
Purge the purple!
1 parent f01ba5f commit 4128819

File tree

1 file changed

+9
-9
lines changed
  • frontend/pages/admin/UserManagementPage/components/UserForm

1 file changed

+9
-9
lines changed

frontend/pages/admin/UserManagementPage/components/UserForm/UserForm.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
import React, {
2-
FormEvent,
3-
useState,
4-
useEffect,
5-
useContext,
6-
useRef,
7-
} from "react";
1+
import React, { FormEvent, useState, useEffect, useContext } from "react";
82
import PATHS from "router/paths";
93

104
import { PRIMO_TOOLTIP } from "utilities/constants";
@@ -350,7 +344,10 @@ const UserForm = ({
350344
return (
351345
<>
352346
{isPremiumTier && (
353-
<InfoBanner className={`${baseClass}__user-permissions-info`}>
347+
<InfoBanner
348+
color="grey"
349+
className={`${baseClass}__user-permissions-info`}
350+
>
354351
<p>
355352
Global users can manage or observe all users, entities, and
356353
settings in Fleet.
@@ -406,7 +403,10 @@ const UserForm = ({
406403
{!!availableTeams.length &&
407404
(isModifiedByGlobalAdmin ? (
408405
<>
409-
<InfoBanner className={`${baseClass}__user-permissions-info`}>
406+
<InfoBanner
407+
color="grey"
408+
className={`${baseClass}__user-permissions-info`}
409+
>
410410
<p>
411411
Users can manage or observe fleet-specific users, entities,
412412
and settings in Fleet.

0 commit comments

Comments
 (0)