Skip to content

Commit

Permalink
ENG-1733 fixing default sketch;
Browse files Browse the repository at this point in the history
  • Loading branch information
ffleandro committed Jan 8, 2021
1 parent aea6ca0 commit 4568dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/env-bundler.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ const componentResponseProcessor = {
'configuration.frames[].sketch': [{
key: 'configuration.frames[].sketch',
transform: function(sketch) {
return sketch === null ? {x1: 0, x2: 0, y1: 11, y2: 0} : sketch;
return sketch === null ? {x1: 0, x2: 11, y1: 0, y2: 0} : sketch;
}
}],
'template': 'template'
Expand Down

0 comments on commit 4568dfa

Please sign in to comment.