Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit dcae197

Browse files
Merge pull request #2148 from montegoulding/bugfix-22847
[[ Bug 22847 ]] Improve display of enum values in dictionary
2 parents 98e66ef + 1812319 commit dcae197

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Documentation/html_viewer/js/dictionary_functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1263,7 +1263,7 @@
12631263
tHTML += '<li><span class="lcdoc_parameterValue">';
12641264
tHTML += value.value + '</span>';
12651265
if (nonEmptyElement(value, "description"))
1266-
tHTML += ' -' + value.description;
1266+
tHTML += ' - ' + value.description;
12671267
tHTML += '</li>';
12681268
});
12691269
tHTML += "</ul>";

notes/bugfix-22847.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Improve display of enum values in dictionary

0 commit comments

Comments
 (0)