From 3cb2a897fa1a850665b02253fc0ff90b336cd02b Mon Sep 17 00:00:00 2001 From: Bart Langedijk Date: Fri, 2 Feb 2018 12:07:48 +0100 Subject: [PATCH] ESLint fix --- src/scripts/src/choices.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/scripts/src/choices.js b/src/scripts/src/choices.js index 2e88577..51c3658 100644 --- a/src/scripts/src/choices.js +++ b/src/scripts/src/choices.js @@ -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); }