Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Sep 21, 2024
2 parents cc622b1 + 11602d3 commit 5bb22e5
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"playwright:install": "pnpm exec playwright install"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@biomejs/biome": "^1.9.0",
"@lerna-lite/cli": "^3.9.0",
"@lerna-lite/publish": "^3.9.0",
"@lerna-lite/watch": "^3.9.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1803,7 +1803,7 @@ export class MultipleSelectInstance {
const isDropPositionBottom = position !== 'top';
const filterHeight = this.filterParentElm?.getBoundingClientRect().height ?? 0;
const okButtonHeight = this.okButtonElm?.getBoundingClientRect().height ?? 0;
const selectAllHeight = this.options.single ? 0 : this.selectAllParentElm?.getBoundingClientRect().height ?? 0;
const selectAllHeight = this.options.single ? 0 : (this.selectAllParentElm?.getBoundingClientRect().height ?? 0);
const msDropMinimalHeight = filterHeight + okButtonHeight + selectAllHeight + 5;

const { bottom: spaceBottom, top: spaceTop } = calculateAvailableSpace(this.parentElm);
Expand Down
60 changes: 30 additions & 30 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5bb22e5

Please sign in to comment.