mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-09 23:06:06 +00:00
This removes inline JavaScript for #8699. This code was for the old currency select menu which was removed in 4839b7bd63
12 lines
194 B
Ruby
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
|