Enable all columns by default

This commit is contained in:
David Cook
2024-06-13 10:43:33 +10:00
parent e7774d7a24
commit a7ef243262

View File

@@ -82,15 +82,15 @@ module OpenFoodNetwork
{
image: { name: t(:image), visible: true },
name: { name: t(:name), visible: true },
sku: { name: t(:sku), visible: false },
sku: { name: t(:sku), visible: true },
unit: { name: t(:unit), visible: true },
unit_scale: { name: t(:unit_scale), visible: true },
price: { name: t(:price), visible: true },
on_hand: { name: t(:on_hand), visible: true },
producer: { name: t(:producer), visible: true },
category: { name: t(:category), visible: false },
tax_category: { name: t(:tax_category), visible: false },
inherits_properties: { name: t(:inherits_properties), visible: false },
category: { name: t(:category), visible: true },
tax_category: { name: t(:tax_category), visible: true },
inherits_properties: { name: t(:inherits_properties), visible: true },
}
end
end