Merge pull request #1677 from hapifhir/2024-07-gg-fix-broken-link
2024 07 gg fix broken link
This commit is contained in:
commit
689f62aef8
|
@ -4,4 +4,4 @@
|
|||
|
||||
## Other code changes
|
||||
|
||||
* no changes
|
||||
* Fix broken link to definitions in profiles
|
||||
|
|
|
@ -779,7 +779,7 @@ public class StructureDefinitionRenderer extends ResourceRenderer {
|
|||
row.setOpacity("0.5");
|
||||
}
|
||||
UnusedTracker used = new UnusedTracker();
|
||||
String ref = defPath == null ? null : defPath + anchorPrefix + element.getId();
|
||||
String ref = defPath == null ? null : defPath + element.getId();
|
||||
String sName = tail(element.getPath());
|
||||
if (element.hasSliceName()) {
|
||||
sName = sName +":"+element.getSliceName();
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -21,7 +21,7 @@
|
|||
<commons_compress_version>1.26.0</commons_compress_version>
|
||||
<guava_version>32.0.1-jre</guava_version>
|
||||
<hapi_fhir_version>6.4.1</hapi_fhir_version>
|
||||
<validator_test_case_version>1.5.13</validator_test_case_version>
|
||||
<validator_test_case_version>1.5.14-SNAPSHOT</validator_test_case_version>
|
||||
<jackson_version>2.17.0</jackson_version>
|
||||
<junit_jupiter_version>5.9.2</junit_jupiter_version>
|
||||
<junit_platform_launcher_version>1.8.2</junit_platform_launcher_version>
|
||||
|
|
Loading…
Reference in New Issue