ESLint fix

This commit is contained in:
Bart Langedijk 2018-02-02 12:07:48 +01:00 committed by Josh Johnson
parent 56c4888aea
commit 3cb2a897fa

View file

@ -453,7 +453,11 @@ class Choices {
if (activePlaceholders.length >= 1) {
choiceListFragment = this.createChoicesFragment(activePlaceholders, choiceListFragment);
}
choiceListFragment = this.createGroupsFragment(activeGroups, activeChoices, choiceListFragment);
choiceListFragment = this.createGroupsFragment(
activeGroups,
activeChoices,
choiceListFragment,
);
} else if (activeChoices.length >= 1) {
choiceListFragment = this.createChoicesFragment(activeChoices, choiceListFragment);
}