Skip to content

Commit

Permalink
chore: update select label
Browse files Browse the repository at this point in the history
  • Loading branch information
lawvs committed Aug 4, 2024
1 parent 2d71d70 commit 834723b
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions src/components/filter-sphere.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,19 @@ import {
} from "./ui/select";

export const schema = z.object({
path: z.string(),
type: z.union([
z.literal("YDoc"),
z.literal("YMap"),
z.literal("YArray"),
z.literal("YText"),
z.literal("YXmlElement"),
z.literal("YXmlFragment"),
z.literal("YAbstractType"),
]),
key: z.string(),
path: z.string().describe("Path"),
type: z
.union([
z.literal("YDoc"),
z.literal("YMap"),
z.literal("YArray"),
z.literal("YText"),
z.literal("YXmlElement"),
z.literal("YXmlFragment"),
z.literal("YAbstractType"),
])
.describe("Type"),
key: z.string().describe("Key"),
value: z.unknown(),
});

Expand Down

0 comments on commit 834723b

Please sign in to comment.