From 1878a39188e22647f8940ba5925c0479423937f0 Mon Sep 17 00:00:00 2001 From: Matt Van Horn <455140+mvanhorn@users.noreply.github.com> Date: Wed, 18 Mar 2026 00:13:54 -0700 Subject: [PATCH] Fix inline error style in Add Manager dialog to match product list Add .field class to the email row in the user invitation modal so the .formError styles (icon, color, font-size) defined in forms.scss apply consistently with the product list inline errors. Fixes #13993 --- app/views/admin/user_invitations/new.turbo_stream.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/admin/user_invitations/new.turbo_stream.haml b/app/views/admin/user_invitations/new.turbo_stream.haml index d016621b3e..3c963ec36a 100644 --- a/app/views/admin/user_invitations/new.turbo_stream.haml +++ b/app/views/admin/user_invitations/new.turbo_stream.haml @@ -6,7 +6,7 @@ %p= t ".description" %fieldset.no-border-top.no-border-bottom - .row + .row.field = f.label :email, t(:email) = f.email_field :email, placeholder: t('.eg_email_address'), data: { controller: "select-user" }, inputmode: "email", autocomplete: "off" = f.error_message_on :email