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 51f5b9e commit 26b6029Copy full SHA for 26b6029
src/components/ResourcesBySelector.astro
@@ -26,7 +26,7 @@ const props = z.object({
26
columns: z.union([z.literal(1), z.literal(2), z.literal(3)]).default(2),
27
showDescriptions: z.boolean().default(true),
28
showLastUpdated: z.boolean().default(false),
29
- filterPlacement: z.string().default("top"),
+ filterPlacement: z.enum(["left", "top"]).default("top"),
30
});
31
32
const {
0 commit comments