Skip to content

Commit

Permalink
push input descriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
leoniefritsch committed Sep 12, 2024
1 parent b7b59b6 commit 9129b0f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions frontend/src/components/PresentationRequest.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,10 @@ export default {
]
}
if (this.credentialTypes === undefined) {
getInputDescriptor([])
}
else if (this.composeTypesWithOr) {
definition.input_descriptors.push(
getInputDescriptor("")
);
} else if (this.composeTypesWithOr) {
definition.input_descriptors.push(
getInputDescriptor(this.credentialTypes.join("|"))
);
Expand Down

0 comments on commit 9129b0f

Please sign in to comment.