diff --git a/platypush/backend/http/webapp/src/components/Action/Response.vue b/platypush/backend/http/webapp/src/components/Action/Response.vue index e1bf0c6561..55ff647fff 100644 --- a/platypush/backend/http/webapp/src/components/Action/Response.vue +++ b/platypush/backend/http/webapp/src/components/Action/Response.vue @@ -31,8 +31,13 @@ export default { name: 'Response', mixins: [Utils], props: { - response: String, - error: String, + response: { + type: [String, Object], + }, + + error: { + type: [String, Object], + }, }, computed: { @@ -57,4 +62,14 @@ export default {