ArgsTable: Fix symbol control

This commit is contained in:
Michael Shilman 2020-04-12 16:04:20 +08:00
parent 6d834e1c04
commit c10f4890b8

View File

@ -21,6 +21,7 @@ const inferControl = (argType: ArgType): Control => {
return { type: 'options', controlType: 'select', options: value };
}
case 'function':
case 'symbol':
return null;
default:
return { type: 'object' };