Skip to content

Commit

Permalink
Fix: DMS-Input returns COOs
Browse files Browse the repository at this point in the history
  • Loading branch information
darenegade authored and markostreich committed Feb 22, 2024
1 parent 928c2eb commit 8c1829d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ export default defineComponent({
const getMetadataOfObjects = (objects: DmsObject[]) => {
return objects
.map(doc => doc.metadata)
.filter(metadata => !!metadata);
.filter(doc => !!doc.metadata)
.map(doc => doc.coo);
}
const validate = (number: number) => {
Expand Down

0 comments on commit 8c1829d

Please sign in to comment.