Skip to content

Commit

Permalink
fix setItems
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ga committed Aug 11, 2020
1 parent 59ddce7 commit 2e2b350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Alloy/commands/compile/parsers/Ti.UI.ListSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function parse(node, state, args) {
items: itemCode,
post: 'opts.animation ? ' +
sps + '.setItems(' + itemsVar + ', opts.animation) : ' +
sps + '.setItems(' + itemsVar + ');'
sps + '.items = ' + itemsVar + ';'
});
}

Expand Down

0 comments on commit 2e2b350

Please sign in to comment.