Skip to content

Commit

Permalink
0.261.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwoldatwork authored Sep 28, 2023
2 parents 4fc05aa + 48d10fe commit 9d84f7b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions app/models/cscrm_data_collection2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def self.established_process_information_sharing_options
#

def self.export_conversion_question_10(field)
return nil if field.length == 1
return nil if !field || field.length == 1

# 0 = Not Identified
# 1 = 1 or 2 identified
Expand All @@ -445,7 +445,7 @@ def self.export_conversion_question_10(field)
end

def self.export_conversion_question_12(field)
return nil if field.length == 1
return nil if !field || field.length == 1

# 0 = Not Considered
# 1 = up to 2 selections
Expand All @@ -470,7 +470,7 @@ def self.export_conversion_question_12(field)
end

def self.export_conversion_question_14(field)
return nil if field.length == 1
return nil if !field || field.length == 1

# 0 = Not Considered
# 1 = Some Products and/or Services
Expand Down Expand Up @@ -520,7 +520,7 @@ def self.export_conversion_question_16(field)
end

def self.export_conversion_question_17(field)
return nil if field.length == 1
return nil if !field || field.length == 1

# 0 = Not Considered;
# 1 = Response option(s), other than SCRAs;
Expand Down
2 changes: 1 addition & 1 deletion app/views/components/forms/_custom_layout.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</p>
<% end %>
<p>
<%= t :required_text_html %>
<%= t('form.required_field_html') %>
</p>
<%= render 'components/forms/flash', form: form %>
<%= render partial: "components/forms/custom", locals: { form: form, questions: form.questions } %>
Expand Down
4 changes: 2 additions & 2 deletions app/views/components/widget/_no_modal.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
type="button"
href="#"
aria-label="Close this window">×</a>
<% end %>
<% end -%>

<% if form.instructions? %>
<p class="fba-instructions">
Expand All @@ -25,7 +25,7 @@
<% end -%>
<p>
<small>
<%= t :required_field_html %>
<%= t('form.required_field_html') %>
</small>
</p>
<%= render 'components/forms/flash', form: form %>
Expand Down

0 comments on commit 9d84f7b

Please sign in to comment.