mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
7550fd69fa
## ➡️ #15965 Without global setting: ![Screenshot-2024-01-24-at-12035PM(1)](https://github.com/fleetdm/fleet/assets/61553566/a98007a4-21b2-4f55-84e3-f58cf529af43) With global setting: ![Screenshot-2024-01-24-at-12925PM(1)](https://github.com/fleetdm/fleet/assets/61553566/e6d20038-d2c2-4f75-a82e-3d4c0c8cb1fd) - [x] Changes file added for user-visible changes in `changes/` - [x] Added/updated tests - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com> Co-authored-by: Sharon Katz <121527325+sharon-fdm@users.noreply.github.com>
12 lines
225 B
TypeScript
12 lines
225 B
TypeScript
import { InjectedRouter } from "react-router";
|
|
|
|
export interface ITeamSubnavProps {
|
|
location: {
|
|
pathname: string;
|
|
search: string;
|
|
hash?: string;
|
|
query: { team_id?: string };
|
|
};
|
|
router: InjectedRouter;
|
|
}
|