From 63d817bc582a437252b80ff512822d21f5c33576 Mon Sep 17 00:00:00 2001 From: Ben Stinton Date: Thu, 4 Mar 2021 13:29:25 +0000 Subject: [PATCH] add missing quotes on ln 427 to supportType 'service' --- src/WorkflowGui/Resources/public/js/pimcore/workflow/item.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WorkflowGui/Resources/public/js/pimcore/workflow/item.js b/src/WorkflowGui/Resources/public/js/pimcore/workflow/item.js index 3b9177d..47581ed 100644 --- a/src/WorkflowGui/Resources/public/js/pimcore/workflow/item.js +++ b/src/WorkflowGui/Resources/public/js/pimcore/workflow/item.js @@ -427,7 +427,7 @@ pimcore.plugin.workflow.item = Class.create({ supportType = 'simple'; } else { if (this.data.support_strategy.hasOwnProperty('service') && this.data.support_strategy.service) { - supportType = service; + supportType = 'service'; } else if (this.data.support_strategy.hasOwnProperty('type') && this.data.support_strategy.type) { supportType = this.data.support_strategy.type; }