Skip to content

Commit

Permalink
fix[Op#40437]: Use fully qualified ❤️
Browse files Browse the repository at this point in the history
Use both hex codes to ensure red color! Tested on Safari
  • Loading branch information
akabiru committed Oct 25, 2024
1 parent 88047f1 commit a6427d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/models/emoji_reaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class EmojiReaction < ApplicationRecord
thumbs_down: "\u{1F44E}",
grinning_face_with_smiling_eyes: "\u{1F604}",
confused_face: "\u{1F615}",
heart: "\u{2764}",
heart: "\u{2764 FE0F}",
party_popper: "\u{1F389}",
rocket: "\u{1F680}",
eyes: "\u{1F440}"
Expand Down
2 changes: 1 addition & 1 deletion spec/models/emoji_reaction_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

describe ".available_emojis" do
it "returns the available emojis as HTML codes" do
expect(described_class.available_emojis).to eq(["👍", "👎", "😄", "😕", "❤", "🎉", "🚀", "👀"])
expect(described_class.available_emojis).to eq(["👍", "👎", "😄", "😕", "❤", "🎉", "🚀", "👀"])
end
end

Expand Down

0 comments on commit a6427d3

Please sign in to comment.