From 481fbe9bf454a6589372d303d22fd030f9aa21cb Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Thu, 28 Nov 2019 16:48:41 +0000 Subject: [PATCH] Allow arrays as submitData --- src/components/genericComponents/taskSubmitter.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/genericComponents/taskSubmitter.vue b/src/components/genericComponents/taskSubmitter.vue index 75b04730..e4609e81 100644 --- a/src/components/genericComponents/taskSubmitter.vue +++ b/src/components/genericComponents/taskSubmitter.vue @@ -45,7 +45,7 @@ export default { required: true }, submitData: { - type: Object, + type: [Object, Array], required: false, default: () => ({}) },