We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6a826e commit b65e378Copy full SHA for b65e378
2 files changed
app/components/alchemy/ingredients/color_view.rb
@@ -2,7 +2,7 @@ module Alchemy
2
module Ingredients
3
class ColorView < BaseView
4
def call
5
- value
+ value.html_safe
6
end
7
8
def render?
app/components/alchemy/ingredients/select_view.rb
@@ -3,7 +3,7 @@ module Ingredients
class SelectView < BaseView
if ingredient.multiple? && value.is_a?(Array)
- value.to_sentence
+ value.to_sentence.html_safe
else
super
9
0 commit comments