From 77bc612389d08b5981eef0d1c379704967b6fab3 Mon Sep 17 00:00:00 2001 From: kruzikh Date: Mon, 1 Jun 2026 10:11:33 +0200 Subject: [PATCH] Update registry.js Correction of the Czech Edition Code --- registry/registry.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/registry/registry.js b/registry/registry.js index f5de4f85..c0950eba 100644 --- a/registry/registry.js +++ b/registry/registry.js @@ -758,7 +758,7 @@ class RegistryModule { case '11000267109': edition = 'KR'; break; case '900000001000122104': edition = 'ES-ES'; break; case '2011000195101': edition = 'CH'; break; - case '11000279109': edition = 'CX'; break; + case '11000279109': edition = 'CZ'; break; case '999000021000000109': edition = 'UK+Clinical'; break; case '5631000179106': edition = 'UY'; break; case '21000325107': edition = 'CL'; break; @@ -1233,7 +1233,7 @@ class RegistryModule { // FHIR Version field html += '

'; html += ''; - html += ``; html += '

'; html += '

Examples: R4, 4.0.1, 5.0.0, etc.

'; @@ -1241,7 +1241,7 @@ class RegistryModule { html += '
Either Code System URL or Value Set URL must be provided:
'; html += '

'; html += ''; - html += ``; html += '

'; html += '

Example: http://loinc.org

'; @@ -1249,7 +1249,7 @@ class RegistryModule { // ValueSet URL field - now vertical html += '

'; html += ''; - html += ``; html += '

'; html += '

Example: http://hl7.org/fhir/ValueSet/observation-codes

'; @@ -1257,7 +1257,7 @@ class RegistryModule { // Authoritative Only checkbox html += '

'; - html += ``; html += ''; html += '

'; @@ -1276,7 +1276,7 @@ class RegistryModule { document.querySelector('form').addEventListener('submit', function(e) { const url = document.getElementById('url').value.trim(); const valueSet = document.getElementById('valueSet').value.trim(); - + if (!url && !valueSet) { e.preventDefault(); alert('You must provide either a Code System URL or a Value Set URL');