Skip to content

Commit

Permalink
Merge pull request #1310 from project-flogo/fix-import-object-type
Browse files Browse the repository at this point in the history
  • Loading branch information
fcastill authored Jun 22, 2020
2 parents 2e81758 + 3faba79 commit e235755
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions apps/server/src/common/utils/value-type.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ export function normalizeValueType(type) {
case 'boolean':
case 'bool':
return FLOGO_TASK_ATTRIBUTE_TYPE.BOOLEAN;
case 'object':
return FLOGO_TASK_ATTRIBUTE_TYPE.OBJECT;
case 'bytes':
return FLOGO_TASK_ATTRIBUTE_TYPE.BYTES;
case 'array':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const expectedResource = {
output: [
{
name: 'status',
type: 'any',
type: 'object',
},
{
name: 'code',
Expand Down

0 comments on commit e235755

Please sign in to comment.