summaryrefslogtreecommitdiffhomepage
path: root/packages/app/src
diff options
context:
space:
mode:
Diffstat (limited to 'packages/app/src')
-rw-r--r--packages/app/src/components/dialog-select-file.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/app/src/components/dialog-select-file.tsx b/packages/app/src/components/dialog-select-file.tsx
index 621b2fb21..dee87b558 100644
--- a/packages/app/src/components/dialog-select-file.tsx
+++ b/packages/app/src/components/dialog-select-file.tsx
@@ -134,14 +134,14 @@ export function DialogSelectFile() {
})
return (
- <Dialog title="Search">
+ <Dialog class="pt-3 pb-0">
<List
- search={{ placeholder: "Search files and commands", autofocus: true, hideIcon: true, class: "px-3" }}
+ search={{ placeholder: "Search files and commands", autofocus: true, hideIcon: true, class: "pl-3 pr-2 !mb-0" }}
emptyMessage="No results found"
items={items}
key={(item) => item.id}
filterKeys={["title", "description", "category"]}
- groupBy={(item) => (grouped() ? item.category : "")}
+ groupBy={(item) => item.category}
onMove={handleMove}
onSelect={handleSelect}
>