Skip to content

Commit

Permalink
Change values to String
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoniafriedrich committed Sep 24, 2024
1 parent ccaef67 commit e44661a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mir-module/src/main/resources/xsl/editor/mir2xeditor.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@
</xsl:template>

<xsl:template name="mir-dateRange">
<xsl:param name="showDateTimeOption" select="false" />
<xsl:param name="startsWithDateTime" select="false" />
<xsl:param name="showDateTimeOption" select="'false'" />
<xsl:param name="startsWithDateTime" select="'false'" />
<xsl:variable name="timeClass">
<xsl:choose>
<xsl:when test="$startsWithDateTime='true'">
Expand Down Expand Up @@ -223,7 +223,7 @@
</xsl:template>

<xsl:template name="date-selectFormat">
<xsl:param name="showDateTimeOption" select="false" />
<xsl:param name="showDateTimeOption" select="'false'" />
<div class="input-group-btn date-selectFormat input-group-append">
<button class="btn btn-secondary dropdown-toggle" data-toggle="dropdown"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
<ul class="dropdown-menu dropdown-menu-right" role="menu">
Expand Down

0 comments on commit e44661a

Please sign in to comment.