diff --git a/src/app/base/components/GroupSelect/GroupSelect.tsx b/src/app/base/components/GroupSelect/GroupSelect.tsx index fc8a6db786c..14897b8fc8e 100644 --- a/src/app/base/components/GroupSelect/GroupSelect.tsx +++ b/src/app/base/components/GroupSelect/GroupSelect.tsx @@ -1,10 +1,13 @@ import { Select } from "@canonical/react-components"; +import classNames from "classnames"; type Props = { + className?: string; grouping: T | null; + groupOptions: { value: T | string; label: string }[]; + name?: string; setGrouping: (group: T | null) => void; setHiddenGroups?: (groups: string[]) => void; - groupOptions: { value: T | string; label: string }[]; }; const GroupSelect = ({ @@ -12,13 +15,15 @@ const GroupSelect = ({ setGrouping, setHiddenGroups, groupOptions, + name, + className, }: Props): JSX.Element => { return (