diff --git a/src/components/profile/groups-editor-viewer.tsx b/src/components/profile/groups-editor-viewer.tsx index fc8a832..6de1b44 100644 --- a/src/components/profile/groups-editor-viewer.tsx +++ b/src/components/profile/groups-editor-viewer.tsx @@ -30,6 +30,8 @@ import { TextField, styled, } from "@mui/material"; +import VerticalAlignTopIcon from "@mui/icons-material/VerticalAlignTop"; +import VerticalAlignBottomIcon from "@mui/icons-material/VerticalAlignBottom"; import { GroupItem } from "@/components/profile/group-item"; import { getNetworkInterfaces, @@ -402,6 +404,11 @@ export const GroupsEditorViewer = (props: Props) => { disableCloseOnSelect onChange={(_, value) => value && field.onChange(value)} renderInput={(params) => } + renderOption={(props, option) => ( +
  • + {option} +
  • + )} /> )} @@ -705,6 +712,7 @@ export const GroupsEditorViewer = (props: Props) => {