Module: ImportAttributesHelper

Defined in:
app/helpers/import_attributes_helper.rb

Instance Method Summary collapse

Instance Method Details

#import_attribute_tag(import_attribute) ⇒ Object



3
4
5
6
# File 'app/helpers/import_attributes_helper.rb', line 3

def import_attribute_tag(import_attribute)
  return nil if import_attribute.nil?
  '<b>' + import_attribute&.import_predicate.to_s + ':</b> ' + import_attribute&.value.to_s
end