diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-11-08 21:06:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-08 21:06:14 +0100 |
commit | ccbdf689e824f93bc9a950bb29a4f1ce58e0f1c9 (patch) | |
tree | a87bf5e5d7a7b3a02cb515b5076bf8b7155b13fa /app/views/shared | |
parent | 7f4adfaf779635035db568095f684a2ded4aea6b (diff) |
Fix form validation flash message color and input borders (#9235)
* Fix form validation flash message color and input borders * Fix typo
Diffstat (limited to 'app/views/shared')
-rw-r--r-- | app/views/shared/_error_messages.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/_error_messages.html.haml b/app/views/shared/_error_messages.html.haml index b73890216..28becd6c4 100644 --- a/app/views/shared/_error_messages.html.haml +++ b/app/views/shared/_error_messages.html.haml @@ -1,3 +1,3 @@ - if object.errors.any? - .flash-message#error_explanation + .flash-message.alert#error_explanation %strong= t('generic.validation_errors', count: object.errors.count) |