Skip to content

Commit

Permalink
Sigh
Browse files Browse the repository at this point in the history
  • Loading branch information
jpwhite4 committed Jan 14, 2023
1 parent 378bb13 commit 3b72e9c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions etl/js/config/supremm/dataset_maps/pcp.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,15 @@ module.exports = function(config) {
if (job.procDump.constrained.length > 0) {
return {
executable: job.procDump.constrained[0],
name: 'uncategorized'
name: 'uncategorized',
realname: 'uncategorized'
};
}
if (job.procDump.unconstrained.length > 0) {
return {
executable: job.procDump.unconstrained[0],
name: 'uncategorized'
name: 'uncategorized',
realname: 'uncategorized'
};
}
}
Expand Down

0 comments on commit 3b72e9c

Please sign in to comment.