Skip to content

Commit

Permalink
1,594th Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Shyam-Chen committed Nov 29, 2024
1 parent 22824ae commit 519f7ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/registry/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20 as base
FROM node:20 AS base

WORKDIR /usr/src/app
ADD . .
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/select/Select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function onKeydown(evt: KeyboardEvent) {
if (list.value) {
const hover = list.value.querySelector('.Select-Item.hover') as HTMLDivElement;
const offsetTop = hover?.offsetTop;
const offsetTop = hover?.offsetTop - 64;
if (offsetTop) list.value.scrollTop = offsetTop - hover.offsetHeight;
}
}
Expand Down

0 comments on commit 519f7ec

Please sign in to comment.