diff --git a/app/views/admin/products_v3/_table.html.haml b/app/views/admin/products_v3/_table.html.haml index 30bcb7e4ad..a1b8b9fd6c 100644 --- a/app/views/admin/products_v3/_table.html.haml +++ b/app/views/admin/products_v3/_table.html.haml @@ -41,7 +41,7 @@ %td.align-left .line-clamp-1= product.taxons.map(&:name).join(', ') %td.align-left - .line-clamp-1= product.tax_category&.name + .line-clamp-1= product.tax_category&.name || "None" # TODO: convert to dropdown, else translate hardcoded string. %td.align-left .line-clamp-1= product.inherits_properties ? 'YES' : 'NO' #TODO: consider using https://github.com/RST-J/human_attribute_values, else use I18n.t (also below) - product.variants.each do |variant|