From 17221448567a4fb6dc53c39c3f42eb8eb66bdc3d Mon Sep 17 00:00:00 2001 From: Jonas Metzener Date: Mon, 19 Sep 2022 17:15:36 +0200 Subject: [PATCH] fix(bootstrap): make sure error feedback is always visible --- addon/components/validated-input/error.hbs | 2 +- tests/integration/components/validated-input/error-test.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/addon/components/validated-input/error.hbs b/addon/components/validated-input/error.hbs index cf100abf..e50487ed 100644 --- a/addon/components/validated-input/error.hbs +++ b/addon/components/validated-input/error.hbs @@ -6,7 +6,7 @@ diff --git a/tests/integration/components/validated-input/error-test.js b/tests/integration/components/validated-input/error-test.js index 2af1bb34..a93bd1c7 100644 --- a/tests/integration/components/validated-input/error-test.js +++ b/tests/integration/components/validated-input/error-test.js @@ -35,6 +35,7 @@ module("Integration | Component | validated-input/error", function (hooks) { await render(hbs``); assert.dom("span").hasClass("invalid-feedback"); + assert.dom("span").hasClass("d-block"); assert.dom("span").hasText("foo, bar, baz"); }); });