Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
313 B

module ApplicationHelper
3 years ago
def browser_title(title, *resources)
if resources.any? { |r| r.present? && r.errors.present? }
3 years ago
"Error: #{[title, t('service_name'), 'GOV.UK'].select(&:present?).join(' - ')}"
else
[title, t("service_name"), "GOV.UK"].select(&:present?).join(" - ")
end
end
end