mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
Add team id to sub-nav links on macOS settings page (#11005)
This commit is contained in:
parent
2f38f2e76a
commit
af36687969
@ -9,15 +9,20 @@ import { API_NO_TEAM_ID, APP_CONTEXT_NO_TEAM_ID } from "interfaces/team";
|
||||
import mdmAPI from "services/entities/mdm";
|
||||
|
||||
import MAC_OS_SETTINGS_NAV_ITEMS from "./MacOSSettingsNavItems";
|
||||
import AggregateMacSettingsIndicators from "./AggregateMacSettingsIndicators/AggregateMacSettingsIndicators";
|
||||
|
||||
const baseClass = "mac-os-settings";
|
||||
|
||||
interface IMacOSSettingsProps {
|
||||
params: Params;
|
||||
location: {
|
||||
search: string;
|
||||
};
|
||||
}
|
||||
|
||||
const MacOSSettings = ({ params }: IMacOSSettingsProps) => {
|
||||
const MacOSSettings = ({
|
||||
location: { search: queryString },
|
||||
params,
|
||||
}: IMacOSSettingsProps) => {
|
||||
const { section } = params;
|
||||
const { currentTeam } = useContext(AppContext);
|
||||
|
||||
@ -51,7 +56,10 @@ const MacOSSettings = ({ params }: IMacOSSettingsProps) => {
|
||||
{profiles && <AggregateMacSettingsIndicators teamId={teamId} />}
|
||||
<SideNav
|
||||
className={`${baseClass}__side-nav`}
|
||||
navItems={MAC_OS_SETTINGS_NAV_ITEMS}
|
||||
navItems={MAC_OS_SETTINGS_NAV_ITEMS.map((navItem) => ({
|
||||
...navItem,
|
||||
path: navItem.path.concat(queryString),
|
||||
}))}
|
||||
activeItem={currentFormSection.urlSection}
|
||||
CurrentCard={
|
||||
<CurrentCard
|
||||
|
Loading…
Reference in New Issue
Block a user