Skip to content

Commit

Permalink
KPMP-5342: added case for non-METADATA_RECEIVED state
Browse files Browse the repository at this point in the history
  • Loading branch information
HaneenT committed Apr 23, 2024
1 parent c74ce30 commit a02a51d
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 a02a51d

Please sign in to comment.