Skip to content

Commit

Permalink
Fix archived item condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kreafox committed Mar 14, 2023
1 parent be58335 commit 8c0d70a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ItemView/Datasets/DatasetItemsList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const DatasetItemsList = (props) => {
temporalDateRange,
publicationDateForResource,
} = dataset;
const archived = isObsolete(dataset.cl_status) || isInternal(dataset);
const archived = isObsolete(dataset.cl_status);

return (
<React.Fragment key={index}>
Expand Down

0 comments on commit 8c0d70a

Please sign in to comment.