Files
openfoodnetwork/app/helpers/spree/admin/general_settings_helper.rb
Cillian O'Ruanaidh 22a48de033 Remove unused code for currency select menu which no longer exists
This removes inline JavaScript for #8699. This code was for the old currency select menu which was removed in 4839b7bd63
2022-01-14 12:33:30 +00:00

12 lines
194 B
Ruby

# frozen_string_literal: true
module Spree
module Admin
module GeneralSettingsHelper
def all_units
["g", "oz", "lb", "kg", "T", "mL", "L", "kL"]
end
end
end
end