Skip to content

Commit

Permalink
add missing quotes on ln 427 to supportType 'service'
Browse files Browse the repository at this point in the history
  • Loading branch information
benstinton committed Mar 4, 2021
1 parent 4072308 commit 63d817b
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 63d817b

Please sign in to comment.