SpeciesFileGroup/taxonworks

View on GitHub
app/helpers/common_names_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CommonNamesHelper


  def common_name_tag(common_name)
    return nil if common_name.nil?
    common_name.name
  end


end