mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
14 lines
202 B
Ruby
14 lines
202 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
module EnterprisesHelper
|
|
def add_check_if_single(count)
|
|
if count == 1
|
|
{ checked: true }
|
|
else
|
|
{}
|
|
end
|
|
end
|
|
end
|
|
end
|