Commit 27e3bb4 1 parent 18adb65 commit 27e3bb4 Copy full SHA for 27e3bb4
File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,11 @@ export function CommandMenu() {
106
106
< CommandContext . Provider value = { values } >
107
107
< CommandDialog open = { open } onOpenChange = { setOpen } >
108
108
< CommandInput
109
- placeholder = "Type a command or search for documents"
109
+ placeholder = {
110
+ currentPage === "docs"
111
+ ? "Search docs..."
112
+ : "Search for a command..."
113
+ }
110
114
currentPage = { currentPage }
111
115
value = { value }
112
116
onKeyDown = { onKeyDown }
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ export function SiblingDoc({
155
155
alignOffset = { 8 }
156
156
side = { direction === "prev" ? "right" : "left" }
157
157
align = "start"
158
- className = "max-h-[360px]"
158
+ className = "max-h-[360px] overflow-y-scroll "
159
159
>
160
160
< Island lazy >
161
161
< RichText content = { doc . content } />
You can’t perform that action at this time.
0 commit comments