Skip to content

Commit

Permalink
fix: the label's description property can be null
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Jan 18, 2021
1 parent ff9e075 commit 3e69c2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion payload-schemas/schemas/common/label.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"node_id": { "type": "string" },
"url": { "type": "string" },
"name": { "type": "string" },
"description": { "type": "string" },
"description": { "type": ["string", "null"] },
"color": { "type": "string" },
"default": { "type": "boolean" }
},
Expand Down
2 changes: 1 addition & 1 deletion schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2079,7 +2079,7 @@ export interface Label {
node_id: string;
url: string;
name: string;
description: string;
description: string | null;
color: string;
default: boolean;
}
Expand Down

0 comments on commit 3e69c2d

Please sign in to comment.