Skip to content

Commit

Permalink
Merge pull request #56 from alphawerk/support_strategy_service_bug
Browse files Browse the repository at this point in the history
add missing quotes on ln 427 to supportType 'service'
  • Loading branch information
dpfaffenbauer authored Mar 6, 2021
2 parents 4072308 + 63d817b commit fe46105
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit fe46105

Please sign in to comment.