Skip to content

Commit

Permalink
Merge pull request #1601 from merico-dev/1600-cant-scroll-in-dimensio…
Browse files Browse the repository at this point in the history
…n-selectors-dropdown

1600 cant scroll in dimension selectors dropdown
  • Loading branch information
GerilLeto authored Jan 2, 2025
2 parents b574a16 + 8c13b89 commit 0d9e91e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/api",
"version": "14.4.1",
"version": "14.4.2",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/dashboard",
"version": "14.4.1",
"version": "14.4.2",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export const DimensionSelector = observer(({ mmInfo, value, onChange, usedKeys }
<Combobox.Target>{error ? <Tooltip label={error}>{Trigger}</Tooltip> : Trigger}</Combobox.Target>

<Combobox.Dropdown miw={300}>
<Combobox.Options>
<Combobox.Options mah={500} style={{ overflowY: 'auto' }}>
{options.map(({ group, items }) => (
<Combobox.Group key={group} label={group}>
{items.map((item) => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/root",
"version": "14.4.1",
"version": "14.4.2",
"private": true,
"workspaces": [
"api",
Expand Down
2 changes: 1 addition & 1 deletion settings-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/settings-form",
"version": "14.4.1",
"version": "14.4.2",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@devtable/website",
"private": true,
"license": "Apache-2.0",
"version": "14.4.1",
"version": "14.4.2",
"scripts": {
"dev": "vite",
"preview": "vite preview"
Expand Down

0 comments on commit 0d9e91e

Please sign in to comment.