Skip to content

Commit 5bb22e5

Browse files
committed
2 parents cc622b1 + 11602d3 commit 5bb22e5

File tree

3 files changed

+32
-32
lines changed

3 files changed

+32
-32
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"playwright:install": "pnpm exec playwright install"
5858
},
5959
"devDependencies": {
60-
"@biomejs/biome": "^1.8.3",
60+
"@biomejs/biome": "^1.9.0",
6161
"@lerna-lite/cli": "^3.9.0",
6262
"@lerna-lite/publish": "^3.9.0",
6363
"@lerna-lite/watch": "^3.9.0",

packages/multiple-select-vanilla/src/MultipleSelectInstance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1803,7 +1803,7 @@ export class MultipleSelectInstance {
18031803
const isDropPositionBottom = position !== 'top';
18041804
const filterHeight = this.filterParentElm?.getBoundingClientRect().height ?? 0;
18051805
const okButtonHeight = this.okButtonElm?.getBoundingClientRect().height ?? 0;
1806-
const selectAllHeight = this.options.single ? 0 : this.selectAllParentElm?.getBoundingClientRect().height ?? 0;
1806+
const selectAllHeight = this.options.single ? 0 : (this.selectAllParentElm?.getBoundingClientRect().height ?? 0);
18071807
const msDropMinimalHeight = filterHeight + okButtonHeight + selectAllHeight + 5;
18081808

18091809
const { bottom: spaceBottom, top: spaceTop } = calculateAvailableSpace(this.parentElm);

pnpm-lock.yaml

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)