Fix additional bindings html generation issue (#1551)

* Fix additional bindings html generation issue

* Use new test cases snapshot

---------

Co-authored-by: dotasek <dotasek.dev@gmail.com>
This commit is contained in:
Grahame Grieve 2024-01-25 06:47:49 +11:00 committed by GitHub
parent 4ffe900fb3
commit 07d81e3a5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 4 deletions

View File

@ -259,7 +259,8 @@ public class AdditionalBindingsRenderer {
if (binding.compare!=null && binding.valueSet.equals(binding.compare.valueSet))
valueset.style(STYLE_UNCHANGED);
if (br.url != null) {
XhtmlNode a = valueset.ah(determineUrl(br.url), br.uri).tx(br.display);
XhtmlNode a = valueset.ah(determineUrl(br.url), br.uri);
a.tx(br.display);
if (br.external) {
a.tx(" ");
a.img("external.png", null);

View File

@ -2,5 +2,7 @@
"http://somewhere/something-else" : null,
"http://loinc.org/vs/LL715-4" : null,
"http://hl7.org/fhir/us/vrdr/ValueSet/vrdr-PlaceOfDeath" : null,
"http://somewhere/something" : null
"http://somewhere/something" : null,
"https://fhir.infoway-inforoute.ca/ValueSet/issuetype|20190415" : null,
"https://fhir.infoway-inforoute.ca/ValueSet/issueseverity|20190415" : null
}

View File

@ -20,7 +20,7 @@
<properties>
<guava_version>32.0.1-jre</guava_version>
<hapi_fhir_version>6.4.1</hapi_fhir_version>
<validator_test_case_version>1.4.26</validator_test_case_version>
<validator_test_case_version>1.4.27-SNAPSHOT</validator_test_case_version>
<jackson_version>2.16.0</jackson_version>
<junit_jupiter_version>5.9.2</junit_jupiter_version>
<junit_platform_launcher_version>1.8.2</junit_platform_launcher_version>