Skip to content

Commit

Permalink
Merge pull request #45 from european-epc-competence-center/44_BugFixP…
Browse files Browse the repository at this point in the history
…resentationRequest

Presentation request cannot be created in authentication modal
  • Loading branch information
Echsecutor authored Sep 16, 2024
2 parents edbb828 + 9129b0f commit 2ae1224
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/src/components/PresentationRequest.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,11 @@ export default {
"input_descriptors": [
]
}
if (this.composeTypesWithOr) {
if (this.credentialTypes === undefined) {
definition.input_descriptors.push(
getInputDescriptor("")
);
} else if (this.composeTypesWithOr) {
definition.input_descriptors.push(
getInputDescriptor(this.credentialTypes.join("|"))
);
Expand Down

0 comments on commit 2ae1224

Please sign in to comment.