Skip to content

Commit 26b6029

Browse files
Apply suggestion from @pedrosousa
Co-authored-by: Pedro Sousa <[email protected]>
1 parent 51f5b9e commit 26b6029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ResourcesBySelector.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const props = z.object({
2626
columns: z.union([z.literal(1), z.literal(2), z.literal(3)]).default(2),
2727
showDescriptions: z.boolean().default(true),
2828
showLastUpdated: z.boolean().default(false),
29-
filterPlacement: z.string().default("top"),
29+
filterPlacement: z.enum(["left", "top"]).default("top"),
3030
});
3131
3232
const {

0 commit comments

Comments
 (0)