use default format for fields of type string and text

This commit is contained in:
Kamal Bennani 2018-06-08 02:38:32 +02:00
parent a8da79c6f8
commit b85baf568e
No known key found for this signature in database
GPG Key ID: 4513063CDB1A1C25

View File

@ -154,10 +154,6 @@ module.exports = {
let type = 'String';
switch (definition.type) {
case 'string':
case 'text':
type = 'String';
break;
case 'boolean':
type = 'Boolean';
break;