Skip to content

Commit

Permalink
Fix reference to attribute, _key-name (#83)
Browse files Browse the repository at this point in the history
Repairing apparent error in converter-generator XSLT otherwise undetected
  • Loading branch information
galtm authored Jun 4, 2024
1 parent 8ada8a1 commit 04a4a4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/converter-gen/xml-to-json/produce-xml-converter.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
</xsl:for-each-group>

<!-- again, this time for (all) flags, grouping by key name when available -->
<xsl:for-each-group select=".//flag" group-by="(@key-name,@_metaschema-xml-id)[1]">
<xsl:for-each-group select=".//flag" group-by="(@_key-name,@_metaschema-xml-id)[1]">
<xsl:apply-templates select="current-group()[1]" mode="make-template">
<xsl:with-param name="team" tunnel="true" select="current-group()"/>
</xsl:apply-templates>
Expand Down

0 comments on commit 04a4a4c

Please sign in to comment.