Skip to content

Commit 93d0f1e

Browse files
MMT-4069: Fixing dropdown z-index and enlarging more actions icon (#1405)
1 parent dd094bb commit 93d0f1e

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

static/src/js/components/CustomToggle/CustomToggle.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ const CustomToggle = React.forwardRef(
3333
Icon={FaEllipsisV}
3434
iconTitle="A vertical ellipsis icon"
3535
ref={ref}
36+
size="lg"
3637
onClick={
3738
(e) => {
3839
e.preventDefault()

static/src/js/schemas/uiSchemas/GroupSearch.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ const groupSearchUiSchema = {
2121
{
2222
'ui:col': {
2323
md: 4,
24-
children: ['providers']
24+
children: ['providers'],
25+
style: {
26+
zIndex: 9999
27+
}
2528
}
2629
},
2730
{
@@ -33,7 +36,10 @@ const groupSearchUiSchema = {
3336
{
3437
'ui:col': {
3538
md: 4,
36-
children: ['members']
39+
children: ['members'],
40+
style: {
41+
zIndex: 9999
42+
}
3743
}
3844
}
3945
]

0 commit comments

Comments
 (0)