Skip to content

Commit

Permalink
feat: display basic contract information
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias Brunkow Moser committed Jun 29, 2023
1 parent 6c72e41 commit 84513d7
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/components/passport/sections/ContractInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,27 @@
<Field
icon="mdi-file-swap-outline"
label="Contract ID"
:value="propsData.negotiation.id"
:value="propsData.contract['@id']"
/>
<Field
icon="mdi-file-swap-outline"
label="Contract Policy ID"
:value="propsData.contract['odrl:hasPolicy']['@id']"
/>
<Field
icon="mdi-file-swap-outline"
label="Negotiation ID"
:value="propsData.negotiation.init.response['@id']"
/>
<Field
icon="mdi-file-swap-outline"
label="Contract Agreement ID"
:value="propsData.transferRequest.contractId"
:value="propsData.negotiation.get.response['edc:contractAgreementId']"
/>
<Field
icon="mdi-file-swap-outline"
label="Transfer Process ID"
:value="propsData.transferRequest.id"
:value="propsData.transfer.init.response['@id']"
/>
</div>
</template>
Expand Down

0 comments on commit 84513d7

Please sign in to comment.