Stephen Koch

Results 12 comments of Stephen Koch

Seems the `type` was incorrectly generated as 'file' instead of 'image': ```ts // no good defineField({name: 'leadImage', type: 'file', title: 'Lead Image', hidden: false}), // yes! defineField({name: 'leadImage', type: 'image',...

Taking a stab with a simple implementation using the following logic: - adding `options` as a third optional parameter, much like `documentToHtmlString` - checking to see if the desired `renderNode`...