We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abb1bfa commit ebb478aCopy full SHA for ebb478a
app/(admin)/(activity-management)/submissions/_components/data-table.tsx
@@ -30,6 +30,7 @@ export function SubmissionsDataTable({
30
or: [
31
{ hasUserWith: [{ nameContains: query }] },
32
{ hasUserWith: [{ emailContains: query }] },
33
+ { hasQuestionWith: [{ titleContains: query }] },
34
],
35
status: status === "all" ? undefined : status,
36
},
app/(admin)/(activity-management)/submissions/_components/filterable-data-table.tsx
@@ -18,7 +18,7 @@ export default function FilterableDataTable() {
18
<div className="flex flex-col">
19
<div className="mb-4 flex items-center gap-4">
20
<Input
21
- placeholder="搜尋使用者名稱或 e-mail"
+ placeholder="搜尋使用者名稱、e-mail 或題目名稱"
22
value={query}
23
onChange={(e) => setQuery(e.target.value)}
24
/>
0 commit comments