Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions static/src/js/components/CustomToggle/CustomToggle.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const CustomToggle = React.forwardRef(
Icon={FaEllipsisV}
iconTitle="A vertical ellipsis icon"
ref={ref}
size="lg"
onClick={
(e) => {
e.preventDefault()
Expand Down
10 changes: 8 additions & 2 deletions static/src/js/schemas/uiSchemas/GroupSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ const groupSearchUiSchema = {
{
'ui:col': {
md: 4,
children: ['providers']
children: ['providers'],
style: {
zIndex: 9999
}
}
},
{
Expand All @@ -33,7 +36,10 @@ const groupSearchUiSchema = {
{
'ui:col': {
md: 4,
children: ['members']
children: ['members'],
style: {
zIndex: 9999
}
}
}
]
Expand Down