app/components/avo/fields/common/badge_viewer_component.html.erb in avo-2.40.0 vs app/components/avo/fields/common/badge_viewer_component.html.erb in avo-2.41.0

- old
+ new

@@ -1,25 +2 @@ -<% - backgrounds = { - info: 'bg-blue-500', - success: 'bg-green-500', - danger: 'bg-red-500', - warning: 'bg-yellow-500', - secondary: 'bg-gray-500', - } - - label = @value - background = :info - - @options.invert.each do |values, type| - if [values].flatten.map { |value| value }.include? @value - label = @value - background = type.to_sym - next - end - end - - classes = 'whitespace-nowrap rounded-md uppercase px-2 py-1 text-xs font-bold block text-center truncate ' - - classes += "#{backgrounds[background]} text-white" if backgrounds[background].present? -%> -<span class="<%= classes %>" style="max-width: 120px;"><%= label %></span> +<span class="<%= classes %>" style="max-width: 120px;"><%= @value %></span>