Skip to content

Commit 7b9383e

Browse files
committed
Remove brackets
1 parent 39d545e commit 7b9383e

File tree

1 file changed

+2
-2
lines changed
  • packages/components/src/components/Select

1 file changed

+2
-2
lines changed

packages/components/src/components/Select/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,9 @@ export function SelectContainer({
247247
el.style.bottom = `${window.innerHeight - comboboxY + 10}px`
248248
else el.style.top = `${comboboxY + height + 10 + y}px`
249249

250-
if (isOverflowRight) {
250+
if (isOverflowRight)
251251
el.style.left = `${Math.max(comboboxX - el.offsetWidth + combobox.offsetWidth, 0) + x}px`
252-
} else el.style.left = `${comboboxX + x}px`
252+
else el.style.left = `${comboboxX + x}px`
253253
}
254254

255255
// 최초 위치 설정

0 commit comments

Comments
 (0)