Skip to content

Commit 0d9e91e

Browse files
authored
Merge pull request #1601 from merico-dev/1600-cant-scroll-in-dimension-selectors-dropdown
1600 cant scroll in dimension selectors dropdown
2 parents b574a16 + 8c13b89 commit 0d9e91e

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtable/api",
3-
"version": "14.4.1",
3+
"version": "14.4.2",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtable/dashboard",
3-
"version": "14.4.1",
3+
"version": "14.4.2",
44
"license": "Apache-2.0",
55
"publishConfig": {
66
"access": "public",

dashboard/src/dashboard-editor/ui/settings/content/edit-query/merico-metric-query-editor-form/query-tabs/edit-metric-query/dimension-selector/dimension-selector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export const DimensionSelector = observer(({ mmInfo, value, onChange, usedKeys }
105105
<Combobox.Target>{error ? <Tooltip label={error}>{Trigger}</Tooltip> : Trigger}</Combobox.Target>
106106

107107
<Combobox.Dropdown miw={300}>
108-
<Combobox.Options>
108+
<Combobox.Options mah={500} style={{ overflowY: 'auto' }}>
109109
{options.map(({ group, items }) => (
110110
<Combobox.Group key={group} label={group}>
111111
{items.map((item) => {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtable/root",
3-
"version": "14.4.1",
3+
"version": "14.4.2",
44
"private": true,
55
"workspaces": [
66
"api",

settings-form/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtable/settings-form",
3-
"version": "14.4.1",
3+
"version": "14.4.2",
44
"license": "Apache-2.0",
55
"publishConfig": {
66
"access": "public",

website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@devtable/website",
33
"private": true,
44
"license": "Apache-2.0",
5-
"version": "14.4.1",
5+
"version": "14.4.2",
66
"scripts": {
77
"dev": "vite",
88
"preview": "vite preview"

0 commit comments

Comments
 (0)