Skip to content

Commit

Permalink
typo fix, code lists external identification
Browse files Browse the repository at this point in the history
  • Loading branch information
dragos-eu committed Nov 15, 2024
1 parent 3fd7a42 commit dfd8325
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ESPD/model/espd_v3.3.0.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* VueJS components for ESDP-EDM
* VueJS components for ESPD-EDM
* generated on 2024-10-25T07:14:43.324Z
*/

Expand Down
2 changes: 1 addition & 1 deletion ESPD/model/espd_v4.0.0.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* VueJS components for ESDP-EDM
* VueJS components for ESPD-EDM
* generated on 2024-10-25T06:20:06.038Z
*/

Expand Down
2 changes: 1 addition & 1 deletion src/js/codelists.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Vue.component("codelists", {
this.crt_list.LocationUri = gcJSON['gc:CodeList']['Identification']['LocationUri']
this.crt_list.AgencyLongName = gcJSON['gc:CodeList']['Identification']?.['Agency']?.['LongName'] ?? ''
this.crt_list.AgencyIdentifier = gcJSON['gc:CodeList']['Identification']?.['Agency']?.['Identifier']?.['@Identifier'] ?? ''
this.crt_list.type = (this.crt_list.CanonicalUri.startsWith('https://github.com/ESPD/ESPD-EDM/')) ? 'technical' : 'external'
this.crt_list.type = (this.crt_list.CanonicalUri.startsWith('https://github.com/')) ? 'technical' : 'external'
this.crt_list.name = (this.crt_list.type == 'external') ? this.crt_list.LongName : this.crt_list.ListID

gcJSON['gc:CodeList']['SimpleCodeList']['Row'].forEach(element => {
Expand Down
2 changes: 1 addition & 1 deletion src/js/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Vue.component("home",{
<template #header>ESPD Demo Site</template>
<template #lead>
<p>ESPD Demo website is a collection of tools that allow you to download ESPD artefacts, explore the ESPD model, and generate ESPD request and response examples. The site is provided for educational and training purposes only - it is not an implementation of an ESPD Service. The ESDP Demo is a playground that you can explore to get familiar with the ESPD, follow the user experience, and generate ESDP documents.</p>
<p>ESPD Demo website is a collection of tools that allow you to download ESPD artefacts, explore the ESPD model, and generate ESPD request and response examples. The site is provided for educational and training purposes only - it is not an implementation of an ESPD Service. The ESPD Demo is a playground that you can explore to get familiar with the ESPD, follow the user experience, and generate ESPD documents.</p>
<p>
We would like your feedback. For any issues or comments you have with or about this site please contact us via email at <a href="mailto:[email protected]">[email protected]</a>, or <a href="https://github.com/OP-TED/espd-demo/issues">open a ticket on GitHub</a>. Feel free to download or use any parts of the code of this site from our <a href="https://github.com/OP-TED/espd-demo">GitHub repository</a>. The code is distributed under the <a href="https://github.com/OP-TED/espd-demo/blob/main/LICENCE">EUROPEAN UNION PUBLIC LICENCE v. 1.2</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion src/js/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const messages = {
distribution: 'Export Artifacts',
codelists: 'Explore Code Lists',
uuid: 'eCertis integration',
model: 'View ESDP model',
model: 'View ESPD model',
service: 'Generate ESPD Examples'
}
},
Expand Down

0 comments on commit dfd8325

Please sign in to comment.