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 84efd0a commit 17e1febCopy full SHA for 17e1feb
app/(app)/articles/_client.tsx
@@ -79,11 +79,10 @@ const ArticlesPage = () => {
79
<select
80
id="filter"
81
name="filter"
82
- className="mt-2 block w-full rounded border-neutral-300 py-1 pl-3 pr-10 text-sm leading-6 focus:ring-2 focus:ring-pink-600 dark:border-neutral-600"
+ className="mt-2 dark:bg-neutral-800 block w-full rounded border-neutral-300 py-1 pl-3 pr-10 text-sm leading-6 focus:ring-2 focus:ring-pink-600 dark:border-neutral-600"
83
onChange={(e) => {
84
router.push(
85
- `/articles?filter=${e.target.value}${
86
- tag ? `&tag=${tag}` : ""
+ `/articles?filter=${e.target.value}${tag ? `&tag=${tag}` : ""
87
}`,
88
);
89
}}
0 commit comments