class Playbook::Forms::Builder
def time_zone_select_field(name, choices = {}, options = {}, html_options = {}, props: {})
def time_zone_select_field(name, choices = {}, options = {}, html_options = {}, props: {}) props[:label] = @template.label(@object_name, name) if props[:label] == true options[:skip_default_ids] = false unless options.key?(:skip_default_ids) options[:prompt] = props[:blank_selection] || "" html_options[:required] = "required" if props[:required] input = @template.time_zone_select(@object_name, name, choices, options, html_options) @template.pb_rails("select", props: props) do input end end