Skip to content
Snippets Groups Projects
Unverified Commit 9e445bd6 authored by Alexander Polyankin's avatar Alexander Polyankin Committed by GitHub
Browse files

Fix scrolling with filter field values (#40075)

parent 2e9e95c0
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ function CoordinateValueInput({
}: CoordinateValueInputProps) {
if (hasMultipleValues) {
return (
<Box p="md" mah="16rem" style={{ overflow: "auto" }}>
<Box p="md" mah="25vh" style={{ overflow: "auto" }}>
<NumberFilterValuePicker
query={query}
stageIndex={stageIndex}
......
......@@ -116,7 +116,7 @@ function NumberValueInput({
}: NumberValueInputProps) {
if (hasMultipleValues) {
return (
<Box p="md" mah="16rem" style={{ overflow: "auto" }}>
<Box p="md" mah="25vh" style={{ overflow: "auto" }}>
<NumberFilterValuePicker
query={query}
stageIndex={stageIndex}
......
......@@ -124,7 +124,7 @@ function StringValueInput({
}: StringValueInputProps) {
if (hasMultipleValues) {
return (
<Box p="md" mah="16rem" style={{ overflow: "auto" }}>
<Box p="md" mah="25vh" style={{ overflow: "auto" }}>
<StringFilterValuePicker
query={query}
stageIndex={stageIndex}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment