From f9974eb3414e40d93cc1caaf44871617c2bc20ca Mon Sep 17 00:00:00 2001 From: labboy0276 <labboy0276@2397942.no-reply.drupal.org> Date: Mon, 30 Apr 2018 10:54:42 -0500 Subject: [PATCH] Issue #2968100 by labboy0276: Typo in class of container & fieldset twigs --- templates/form/container.html.twig | 2 +- templates/form/fieldset.html.twig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/form/container.html.twig b/templates/form/container.html.twig index ab361f8..f2a8f76 100644 --- a/templates/form/container.html.twig +++ b/templates/form/container.html.twig @@ -20,7 +20,7 @@ {% set classes = [ has_parent ? 'js-form-wrapper', - has_parent ? 'form-goup', + has_parent ? 'form-group', ] %} <div{{ attributes.addClass(classes) }}>{{ children }}</div> diff --git a/templates/form/fieldset.html.twig b/templates/form/fieldset.html.twig index e9bb99d..2adc0e3 100644 --- a/templates/form/fieldset.html.twig +++ b/templates/form/fieldset.html.twig @@ -25,7 +25,7 @@ 'js-form-item', 'form-item', 'js-form-wrapper', - 'form-goup', + 'form-group', errors ? 'has-error', ] %} -- GitLab