mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-04-22 22:05:20 +02:00
Merge pull request #694 from MatrixDai/bugfix/github-issue-label-null-description
Fix: Handle null description in GitHub label schema
This commit is contained in:
@@ -157,7 +157,7 @@ export const GitHubLabelSchema = z.object({
|
|||||||
name: z.string(),
|
name: z.string(),
|
||||||
color: z.string(),
|
color: z.string(),
|
||||||
default: z.boolean(),
|
default: z.boolean(),
|
||||||
description: z.string().optional(),
|
description: z.string().nullable().optional(),
|
||||||
});
|
});
|
||||||
|
|
||||||
export const GitHubMilestoneSchema = z.object({
|
export const GitHubMilestoneSchema = z.object({
|
||||||
|
|||||||
Reference in New Issue
Block a user