Is there a way to have an optional runtime parameter that defaults to an empty string and have it actually display an empty string?
Issue 1: When using an empty string, the parameter becomes required and the user must input something, otherwise the Run button remains disabled.
Issue 2: A workaround is to change the type from string to object, but then it awkwardly displays a single ".
Example:
name: required
displayName: Required
type: string
default:
name: obj
displayName: Object type
type: object
default: ""
name: objtwo
displayName: Object type
type: object
default:
