SpeciesFileGroup/taxonworks

View on GitHub
app/javascript/vue/tasks/observation_matrices/matrix_column_coder/store/getters/getFreeTextValueFor.js

Summary

Maintainability
A
1 hr
Test Coverage
export default function (state) {
  return ({ rowObjectId, rowObjectType }) => state.observations.find(o => o.rowObjectId === rowObjectId && o.rowObjectType === rowObjectType).description
}