Skip to content

Commit

Permalink
Fixed $form-actions cardinality
Browse files Browse the repository at this point in the history
  • Loading branch information
namedgraph committed Dec 20, 2024
1 parent 295b189 commit 06fd3b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ exclude-result-prefixes="#all"
<xsl:param name="chart-type-id" select="'chart-type'" as="xs:string"/>
<xsl:param name="category-id" select="'category'" as="xs:string"/>
<xsl:param name="series-id" select="'series'" as="xs:string"/>
<xsl:param name="form-actions" as="element()">
<xsl:param name="form-actions" as="element()?">
<div class="form-actions">
<button class="btn btn-primary btn-save-chart" type="button">
<xsl:apply-templates select="key('resources', 'save', document(resolve-uri('static/com/atomgraph/linkeddatahub/xsl/bootstrap/2.3.2/translations.rdf', $ac:contextUri)))" mode="ldh:logo">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ extension-element-prefixes="ixsl"
<xsl:param name="query" as="xs:string?"/>
<xsl:param name="show-controls" select="true()" as="xs:boolean"/>
<xsl:param name="show-save" select="true()" as="xs:boolean"/>
<xsl:param name="form-actions" as="element()">
<xsl:param name="form-actions" as="element()?">
<xsl:if test="$show-save">
<div class="form-actions">
<button class="btn btn-primary btn-save-chart" type="button">
Expand Down Expand Up @@ -472,7 +472,7 @@ extension-element-prefixes="ixsl"
<xsl:param name="query" as="xs:string?"/>
<xsl:param name="show-controls" select="true()" as="xs:boolean"/>
<xsl:param name="show-save" select="true()" as="xs:boolean"/>
<xsl:param name="form-actions" as="element()">
<xsl:param name="form-actions" as="element()?s">
<xsl:if test="$show-save">
<div class="form-actions">
<button class="btn btn-primary btn-save-chart" type="button">
Expand Down

0 comments on commit 06fd3b6

Please sign in to comment.