Skip to content

Commit

Permalink
Merge pull request #60 from KPMP/KPMP-5342_add_success_case
Browse files Browse the repository at this point in the history
KPMP-5342: added case for non-METADATA_RECEIVED state
  • Loading branch information
zwright authored Apr 23, 2024
2 parents 3f02044 + a02a51d commit 64b0617
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/PackageDashboard/PackageTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,13 @@ class PackageTable extends Component {
else {
return '';
}
} else {
}
else if (row[GLOBUS_MOVE_STATUS].toLowerCase() === "success") {
return (
<p>ready for review</p>
);
}
else {
// eslint-disable-next-line
return '';
}
Expand Down

0 comments on commit 64b0617

Please sign in to comment.