mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Suunto import: fix weight import
Suunto apparently has a typo in their SDE format. Let's import also WEIGTH :D Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
This commit is contained in:
parent
00ec824129
commit
fade17d16b
1 changed files with 2 additions and 2 deletions
|
@ -84,10 +84,10 @@
|
|||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:if test="WEIGHT != ''">
|
||||
<xsl:if test="WEIGHT|WEIGTH != ''">
|
||||
<weightsystem>
|
||||
<xsl:attribute name="weight">
|
||||
<xsl:value-of select="concat(translate(WEIGHT, ',', '.'), ' kg')"/>
|
||||
<xsl:value-of select="concat(translate(WEIGHT|WEIGTH, ',', '.'), ' kg')"/>
|
||||
</xsl:attribute>
|
||||
</weightsystem>
|
||||
</xsl:if>
|
||||
|
|
Loading…
Reference in a new issue