Skip to content

Commit

Permalink
PIT columns should be labeled PIT R/N/Z (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhenr098 authored Mar 27, 2024
1 parent 2330a82 commit 20cd5ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app-pages/data-entry/datasheets/tables/suppDsTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ const SuppDsTable = connect(
<AgGridColumn field='speciesId' headerName='Species' cellEditor='numberEditor' sortable unSortIcon />
<AgGridColumn field='recorder' cellEditor='textEditor' sortable unSortIcon />
<AgGridColumn field='tagnumber' cellEditor='textEditor' width={125} sortable unSortIcon />
<AgGridColumn field='pitrn' headerName='PIT' cellEditor='selectEditor' cellEditorParams={{ options: visualAssessmentOptions }} sortable unSortIcon />
<AgGridColumn field='pitrn' headerName='PIT R/N/Z' cellEditor='selectEditor' cellEditorParams={{ options: visualAssessmentOptions }} sortable unSortIcon />
<AgGridColumn field='cwtyn' headerName='CWT' cellEditor='selectEditor' cellEditorParams={{ options: YNTextOptions, isRequired: true }} unSortIcon />
<AgGridColumn field='dangler' cellEditor='selectEditor' cellEditorParams={{ options: YNTextOptions, isRequired: true }} sortable unSortIcon />
<AgGridColumn field='scuteloc' headerName='Scute' cellEditor='selectEditor' cellEditorParams={{ options: ScuteOptions }} sortable unSortIcon />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,7 @@ export const evalLocationsOptions = [
export const visualAssessmentOptions = [
{ value: 'R' },
{ value: 'N' },
{ value: 'Z'},
];

export const YNNumOptions = [
Expand Down

0 comments on commit 20cd5ad

Please sign in to comment.