|
|
|
@ -203,7 +203,7 @@ module Csv |
|
|
|
|
|
|
|
|
|
|
|
def conventional_yes_no_label(value) |
|
|
|
def conventional_yes_no_label(value) |
|
|
|
return "Yes" if value == 1 |
|
|
|
return "Yes" if value == 1 |
|
|
|
return "No" if value == 0 |
|
|
|
return "No" if value&.zero? |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def yes_or_blank_label(value) |
|
|
|
def yes_or_blank_label(value) |
|
|
|
|