SpeciesFileGroup/taxonworks

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

Summary

Maintainability
A
0 mins
Test Coverage
export default function (state) {
  return ({ rowObjectId, rowObjectType }) => state.observations.filter(o => o.rowObjectId === rowObjectId && o.rowObjectType === rowObjectType)
}