Skip to content

Commit

Permalink
add disabled prop to url input
Browse files Browse the repository at this point in the history
prepares for #721
  • Loading branch information
danphilibin committed Jul 29, 2022
1 parent 9a80b3d commit 87db9af
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ioSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ export const ioSchema = {
placeholder: z.optional(z.string()),
defaultValue: z.optional(z.string()),
allowedProtocols: z.array(z.string()).default(['http', 'https']),
disabled: z.optional(z.boolean().default(false)),
}),
state: z.null(),
returns: z.string(),
Expand Down

0 comments on commit 87db9af

Please sign in to comment.