From 832ff5ddd8a842cc097963ceb6cdc4d2690f52ac Mon Sep 17 00:00:00 2001 From: Noelle Daley Date: Wed, 19 Feb 2020 11:44:22 -0600 Subject: [PATCH] clarify that EditType is optional (#8386) --- sdk/framework/path.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/framework/path.go b/sdk/framework/path.go index 8f5dd5bee1..87ba5d43e0 100644 --- a/sdk/framework/path.go +++ b/sdk/framework/path.go @@ -190,8 +190,8 @@ type DisplayAttributes struct { // Action is the verb to use for the operation. Action string `json:"action,omitempty"` - // EditType is the type of form field needed for a property - // e.g. "textarea" or "file" + // EditType is the optional type of form field needed for a property + // This is only necessary for a "textarea" or "file" EditType string `json:"editType,omitempty"` }