Skip to content

Commit 049d01a

Browse files
committed
Fix scalar enumeration values in HTML generation
1 parent c89278d commit 049d01a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/sds-aspect-model-document-generators/src/main/resources/docu/templates/html/characteristic-documentation-lib.vm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Characteristic specific macros will be joined together in the main macro (see ab
152152
<div class="table-cell pb-3 col-span-2">
153153
<ul class="reset-all-styles enum-values">
154154
#foreach( $value in $enumeration.getValues() )
155-
<li>$value</li>
155+
<li>$value.getValue()</li>
156156
#end
157157
</ul>
158158
</div>
@@ -255,7 +255,7 @@ Characteristic specific macros will be joined together in the main macro (see ab
255255
#if( $value.equals( $state.getDefaultValue() ) )
256256
<li><span class="font-bold">$value</span></li>
257257
#else
258-
<li>$value</li>
258+
<li>$value.getValue()</li>
259259
#end
260260
#end
261261
</ul>

0 commit comments

Comments
 (0)