diff --git a/app/assets/stylesheets/administrate/base/_typography.scss b/app/assets/stylesheets/administrate/base/_typography.scss index ebf6636a45..3055d8e635 100644 --- a/app/assets/stylesheets/administrate/base/_typography.scss +++ b/app/assets/stylesheets/administrate/base/_typography.scss @@ -23,7 +23,7 @@ p { a { color: $action-color; - text-decoration-skip: ink; + text-decoration-skip-ink: auto; transition: color $base-duration $base-timing; &:hover { diff --git a/spec/example_app/db/seeds.rb b/spec/example_app/db/seeds.rb index e151fa82a1..234733f9e9 100644 --- a/spec/example_app/db/seeds.rb +++ b/spec/example_app/db/seeds.rb @@ -48,8 +48,8 @@ product_attributes.each do |attributes| attributes = attributes.merge product_meta_tag_attributes: { - meta_title: Faker::LordOfTheRings.character, - meta_description: Faker::LordOfTheRings.location, + meta_title: Faker::Movies::LordOfTheRings.character, + meta_description: Faker::Movies::LordOfTheRings.location, } Product.create! attributes.merge(price: 20 + rand(50)) end