Fix up rendering of profile names for abstract profile instantiations

This commit is contained in:
Grahame Grieve 2023-09-20 11:13:43 +10:00
parent 366cb85506
commit 7517f181c7
1 changed files with 1 additions and 1 deletions

View File

@ -1309,7 +1309,7 @@ public class StructureDefinitionRenderer extends ResourceRenderer {
boolean first = true; boolean first = true;
for (StructureDefinition sd : children) { for (StructureDefinition sd : children) {
if (first) first = false; else c.addPiece(gen.new Piece(null, ", ", null)); if (first) first = false; else c.addPiece(gen.new Piece(null, ", ", null));
c.addPiece(gen.new Piece(sd.getWebPath(), sd.getTypeName(), null)); c.addPiece(gen.new Piece(sd.getWebPath(), sd.getName(), null));
} }
} }
} }