Skip to content

Commit

Permalink
array-ify icon sizes Set
Browse files Browse the repository at this point in the history
  • Loading branch information
brendankenny committed Mar 22, 2016
1 parent 19edfe4 commit 432323b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/manifest-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function parseIcon(raw) {
let set = new Set();
sizes.value.split(/\s/).forEach(size => set.add(size.toLowerCase()));

sizes.value = set.size > 0 ? set : undefined;
sizes.value = set.size > 0 ? Array.from(set) : undefined;
}

return {
Expand Down

0 comments on commit 432323b

Please sign in to comment.